Stats
Actions
Tags
From github-and-git
Installs and configures GitHub CLI (gh) for authenticated GitHub operations like creating issues, PRs, and viewing repos.
How this skill is triggered — by the user, by Claude, or both
Slash command
/github-and-git:githubbingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Install and use GitHub CLI (`gh`) for authenticated GitHub operations.
Install and use GitHub CLI (gh) for authenticated GitHub operations.
bash /path/to/githubbing/scripts/install-gh.sh
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
gh auth status
npx claudepluginhub oaustegard/claude-skills --plugin github-and-gitCreates, edits, and verifies skills using a test-driven development approach with pressure scenarios and subagents.