What problem does it solve? Managing GitHub repositories often requires switching between the web UI and terminal to check PR status, inspect CI failures, or query issues. This Skill lets you perform those tasks directly through the gh CLI with structured, scriptable commands. ## Core Features & Use Cases - Pull Request & CI Inspection: Check PR status with gh pr checks, list workflow runs with gh run list, and view failed step logs via gh run view --log-failed. - Advanced API Queries: Use gh api to access GitHub REST endpoints and extract specific fields with --jq filtering. - Structured JSON Output: Most commands support --json and --jq for machine-readable output, enabling automation and reporting. - Use Case: When a pull request fails CI, run gh run view <run-id> --repo owner/repo --log-failed to see only the failed step logs and diagnose the issue without opening a browser. ## Quick Start Ask the assistant to check the CI status of pull request 55 in the repository owner/repo using the gh CLI.