What problem does it solve? Working with GitHub issues, pull requests, and CI runs often requires switching to the browser or memorizing complex API calls. This Skill lets you perform these tasks directly from the terminal using the gh CLI with clear, ready-to-use command patterns. ## 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 GitHub REST API endpoints not covered by standard subcommands. - Structured JSON Output: Combine --json and --jq flags to filter and format issue and PR data for scripting and reporting. - Use Case: When a pull request's CI fails, run gh run view <run-id> --repo owner/repo --log-failed to see only the failed step logs without leaving your terminal. ## Quick Start Ask the AI to check the CI status of pull request 55 in the repository owner/repo using the gh CLI.