A Claude Code plugin that creates feature branches and auto-enters plan mode with Opus.
/feature <title> <description>
- title — becomes the branch name (
feature/<title>) - description — used as the planning prompt
/feature auth-revamp Rebuild the auth middleware to use JWT with refresh tokens
This will:
- Create branch
feature/auth-revamp - Enter plan mode (Opus)
- Explore the codebase and produce an implementation plan for the description
Copy skills/feature/SKILL.md to ~/.claude/skills/feature/SKILL.md. The command is then available as /feature.
Push this directory to a Git repo, then coworkers can install it:
/plugin marketplace add <your-org>/feature-planner
/plugin install feature-planner
The command becomes /feature-planner:feature <title> <description>.
| Prefix | Purpose |
|---|---|
feature/ |
New features |
chore/ |
Maintenance, refactoring, dependency updates |
fix/ |
Bug fixes |
PR titles must follow this format:
| Branch Type | PR Title Format |
|---|---|
feature/ |
[Feature] - Description |
fix/ |
[Fix] - Description |
chore/ |
[Chore] - Description |
MIT