Agent skill
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.
Stars
113
Forks
4
Install this agent skill to your Project
npx add-skill https://github.com/oaustegard/claude-skills/tree/main/githubbing
Metadata
Additional technical details for this skill
- version
- 1.1.2
- requires
- configuring
SKILL.md
Githubbing
Install and use GitHub CLI (gh) for authenticated GitHub operations.
1. Install
bash
bash /path/to/githubbing/scripts/install-gh.sh
2. Configure Authentication
gh reads tokens from GH_TOKEN or GITHUB_TOKEN environment variables.
python
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
bash
gh auth status
Didn't find tool you were looking for?