Claude-skill-registry 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.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/githubbing" ~/.claude/skills/majiayu000-claude-skill-registry-githubbing && rm -rf "$T"
manifest: skills/data/githubbing/SKILL.md
source content

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