What problem does it solve?
Reduce errors and inconsistency when creating git branches by enforcing a predictable naming convention, linking branches to issue identifiers when available, and avoiding interactive prompts during branch creation.
Core Features & Use Cases
- Consistent Naming: Constructs branch names as <category>/<issue-id>_<branch-name> or <category>/<branch-name> and enforces kebab-case for readability.
- Context Inference: Extracts category, issue IDs, and descriptive names from conversation context when arguments are incomplete.
- Non-interactive Execution: Optionally checks out a specified base branch and runs git checkout -b to create the branch, returning structured JSON with branch details.
- Use Case: Quickly create a feature branch tied to a GitHub issue or infer a safe branch name from a task description without manual formatting.
Quick Start
Create a new feature branch from main for issue 123 with a kebab-case name derived from the task description.