What problem does it solve?
This Skill prevents messy Git history and error-prone PR preparation by automating the end-to-end workflow from branch creation through commit formatting, PR description drafting, and branch cleanup.
Core Features & Use Cases
- Branch creation with conventional naming: Automatically creates a feature branch from the latest default branch using a consistent type prefix (feat/fix/docs/refactor/chore/style/test).
- Atomic conventional commits: Generates conventional commit messages and stages+commits changes in small logical units.
- PR body generation + cleanup: Produces a structured PR description from commit history, helps you squash/rebase appropriately, and deletes merged branches to keep the repo tidy.
- Git worktree support: Enables parallel branch work without stashing or repeatedly cloning, useful for hotfixes, reviews, and side-by-side testing.
Quick Start
Create a conventional feature branch, commit your changes with conventional commit messaging, generate a PR body from the commits since the base branch, and then clean up merged branches afterward.