What problem does it solve?
This Skill prevents messy branching and mis-targeted PRs by standardizing how squads create, label, merge, and clean up issue branches in a dev-first Git workflow.
Core Features & Use Cases
- Dev-first integration: Ensures all feature work branches from
dev (never main) and are merged back through PRs.
- Predictable release channels: Defines how
main (released/tagged), dev (preview), and insiders (early-access) publish with distinct npm tags.
- Consistent branch hygiene: Enforces issue branch naming (
squad/{issue-number}-{kebab-case-slug}), provides work-in-progress labeling, and includes cleanup steps after merge.
- Parallel work without collisions: Uses
git worktree to run multiple issue agents concurrently in isolated working directories.
Quick Start
Ask your team assistant to generate an issue branch plan that targets dev, uses the required squad/{issue-number}-{slug} naming, creates a draft PR, and outlines worktree-based parallelism if multiple issues are active.