What problem does it solve? Managing the full pull request lifecycle manually is error-prone: malformed PR bodies, polling the wrong CI endpoint, and unsafe merge or branch-deletion habits cause wasted time and broken workflows. This Skill guides an agent through the entire branch-to-merge process with correct commands for both gh and plain git plus curl. ## Core Features & Use Cases - End-to-End PR Lifecycle: Covers branching with intent prefixes, Conventional Commits, PR creation, CI polling via the check-runs API, failure diagnosis, merging, and cleanup. - Dual Tooling Paths: Every step is provided with both the gh CLI and REST/GraphQL curl equivalents for servers without gh installed. - CI Troubleshooting Reference: Includes a catalog of common CI failure signatures (tests, lint, types, builds, permissions, timeouts, Docker) with diagnosis and fixes. - Use Case: You ask the agent to ship a bug fix. It creates a fix/ branch, commits with a conventional message, opens a PR using the bugfix template, watches CI, diagnoses a failing lint job from the logs, pushes a fix, and squash-merges once checks pass. ## Quick Start Create a pull request for my current changes, watch the CI checks, fix any failures, and merge it when everything passes.