What problem does it solve? Working with the GitHub CLI (gh) and GitHub's REST/GraphQL APIs requires knowing hundreds of commands, flags, rate limits, and schema details. This Skill acts as a router that loads the right reference for the task at hand, so answers are grounded in accurate documentation instead of guesswork. ## Core Features & Use Cases - Task-based routing: Directs standard work (PRs, issues, repos, releases, auth, scripting) to the gh command reference, and advanced work (Projects V2, Discussions, batch queries, edit history) to the GraphQL references. - API backend awareness: Includes a per-command audit of which backend (REST vs GraphQL) each gh command uses, plus rate-limit guidance (REST 5,000 req/hr, GraphQL 5,000 points/hr, Search 30 req/min). - GraphQL schema lookup: Provides core type definitions (PullRequest, Issue, ProjectV2, Discussion) for constructing exact queries and mutations. - Use Case: When asked to recover a mangled PR description, the Skill routes to the GraphQL reference covering the userContentEdits connection, which has no REST or porcelain equivalent. ## Quick Start Ask the agent to list open PRs with failing checks or to update a Projects V2 field, and it will load the matching reference before running gh commands.