githubbing
12
总安装量
2
周安装量
#26192
全站排名
安装命令
npx skills add https://github.com/oaustegard/claude-skills --skill githubbing
Agent 安装分布
opencode
2
gemini-cli
2
antigravity
2
claude-code
2
windsurf
2
codex
2
Skill 文档
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