What problem does it solve? Interacting with GitHub through the web UI is slow and hard to automate. This Skill lets you perform common GitHub operations—checking PR status, triaging issues, inspecting CI runs, and querying the API—directly from the command line using the official gh CLI. ## Core Features & Use Cases - Pull Request Management: List, view, create, merge PRs, and check CI status with gh pr commands. - Issue Operations: Create, list, close, and triage issues with structured JSON output and --jq filtering. - CI/Workflow Inspection: View workflow runs, fetch failed step logs, and re-run failed jobs. - API Queries: Run arbitrary GitHub API queries via gh api with jq-based field extraction. - Use Case: Before merging a feature branch, run gh pr checks 55 --repo owner/repo to verify CI passed, then generate a review summary showing the author, diff stats, and changed files. ## Quick Start Ask the assistant to check the CI status and review summary of pull request number 55 in your repository using the gh CLI.