feature-branch-management
Installation
SKILL.md
Feature Branch Management
Overview
Manage feature branches associated with work items: create branches when starting work, keep them synced with main before PR submission, and clean up after merge. Maintains clean branch hygiene and supports work item -> branch -> PR workflow.
When to Use
Use feature-branch-management when:
- Starting work on a new item (create feature branch)
- Syncing branch before PR submission (rebase on main)
- After PR merge (delete branch locally and remotely)
- Ensuring branch is clean and up-to-date before pushing changes
- Preparing for code review (verify branch state)
When NOT to Use
Skip feature branch management for: