Agent Skills: 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.

UncategorizedID: oaustegard/claude-skills/githubbing

Install this agent skill to your local

pnpm dlx add-skill https://github.com/oaustegard/claude-skills/tree/HEAD/githubbing

Skill Files

Browse the full folder contents for githubbing.

Download Skill

Loading file tree…

githubbing/SKILL.md

Skill Metadata

Name
githubbing
Description
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.

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