worktree-workflow
Installation
SKILL.md
Worktree Workflow
All work happens in isolated git worktrees managed by Worktrunk (wt). Never work directly on main.
Starting Work
1. Create worktree
wt switch --create <branch-name>
Branch naming conventions:
- Feature:
story/STORY-IDorfeat/<description> - Bugfix:
fix/<description>orfix/STORY-ID-<description> - Refactor:
refactor/<description>