What problem does it solve? Managing GitHub operations from the command line involves inconsistent commands, fragile shell escaping for issue bodies, and tedious CI failure debugging. This Skill provides a canonical standard operating procedure for all GitHub CLI (gh) workflows so agents and developers execute them consistently and safely. ## Core Features & Use Cases - Issue Management: List, view, and create issues with a mandatory --body-file pattern that prevents shell escaping and Markdown corruption. - Pull Request Triage: View PR details, diffs, checks, and comments using structured gh pr commands with --json and --jq output filtering. - CI/CD Debugging: Follow a four-step runbook to identify failing checks, locate run IDs, inspect failed jobs, and fetch failure logs. - Use Case: A pull request's CI check fails. Use this Skill to run gh pr checks, find the failing run with gh run list, and pull the exact error output with gh run view --log-failed to diagnose the root cause. ## Quick Start Ask the agent to check the status of pull request 55 and show the logs for any failing CI checks using the GitHub CLI workflow.