mcpbeat

Githubbing

oaustegard/claude-githubbing

GitHub CLI (gh) installation and authenticated operations in Claude.ai containers. Use when user needs to create issues, PRs, view repos, or perform GitHub operations beyond raw API calls.

This is a copy. The original lives at oaustegard/githubbing.

626 tokens
context cost
the whole folder, loaded on every use
3
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
137
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/oaustegard/claude-skills --skill githubbing

The instruction itself

4 sections, as written by the author

Githubbing

Install and use GitHub CLI (gh) for authenticated GitHub operations.

1. Install

bash /path/to/githubbing/scripts/install-gh.sh

2. Configure Authentication

gh reads tokens from GH_TOKEN or GITHUB_TOKEN environment variables.

from configuring import get_env
import os

token = get_env("GH_TOKEN") or get_env("GITHUB_TOKEN")
if token:
    os.environ["GH_TOKEN"] = token

3. Verify

gh auth status

How to use it

Copy the folder

Take oaustegard/claude-githubbing from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.