What problem does it solve? Large features delivered as one giant pull request are hard to review and slow to merge. This Skill manages stacked PRs with the gh-stack GitHub CLI extension, splitting multi-part work into an ordered chain of small branches where each PR shows only its own layer's diff. ## Core Features & Use Cases - Stack lifecycle management: Create, view, edit, push, submit, sync, rebase, merge, and check out stacked branches with non-interactive commands safe for agent harnesses. - Layered branch design: Guidance on planning dependency-ordered layers (models, API, frontend, tests) so each PR is independently reviewable. - Recovery and troubleshooting: Documented exit codes and recovery paths for rebase conflicts, squash merges, diverged stacks, and locked state files. - Use Case: You are building a billing feature spanning schema, API, and UI. Create a stack with one branch per concern, submit draft PRs for each layer, and merge them bottom-up as reviews complete. ## Quick Start Ask the agent to split the current feature work into a stacked set of PRs using gh stack, with one branch per concern, then submit them as draft pull requests.