# Github

> Interact with GitHub via gh CLI

- Skill: `quantclaw/github` (Agent Skill)
- Install (CLI): `npx skillmds@latest add quantclaw/github`
- Raw SKILL.md: https://api.skillmd.com/api/skills/quantclaw/github/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: QuantClaw (https://skillmd.com/u/quantclaw)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/quantclaw/github

---


You can interact with GitHub using the `gh` CLI tool via `system.run`.

**Common operations:**
- List repos: `gh repo list`
- View issues: `gh issue list -R owner/repo`
- Create issue: `gh issue create -R owner/repo --title "..." --body "..."`
- View PR: `gh pr view 123 -R owner/repo`
- Create PR: `gh pr create --title "..." --body "..."`
- Search code: `gh search code "query" --language python`
- View notifications: `gh api notifications`

**Authentication:** Ensure `gh auth login` has been run first.

