What problem does it solve? Interacting with GitHub through the web UI or raw REST API calls is slow and repetitive when you need to check PR status, debug failing CI runs, or query issues from the command line. ## 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 with --jq filtering to retrieve specific fields from any GitHub REST endpoint. - Structured JSON Output: Combine --json and --jq flags to extract exactly the fields needed from issues, PRs, and runs. - Use Case: A developer sees a failing CI badge, runs gh run list --repo owner/repo to find the failed run, then gh run view <run-id> --log-failed to read only the failing step logs without leaving the terminal. ## Quick Start Ask the agent to check the CI status of a pull request or list recent workflow runs for a specific GitHub repository.