hotfix
SKILL.md
What I do
- Turn a short task title into a deterministic
hotfix/<slug>branch name. - Create a git worktree at
../.worktrees/pluto/<branch_sanitized>. - Enforce a tighter scope mindset (minimize change surface).
- Guide sync with
origin/main. - Guide PR creation with hotfix-specific template (Impact/Risk/Rollback/Test plan).
- Guide safe cleanup (remove worktree only).
Naming
- Base branch:
origin/main - Branch:
hotfix/<slug> - Slug rules: same as
feature(max 60). - Worktree path: same as
feature.
Start workflow (create worktree)
Same as feature, but ask one extra question up front:
- What is the user-visible impact / severity and what is the rollback plan?
Sync workflow
Same as feature (prefer rebase on origin/main).