new-task
Installation
SKILL.md
Fresh Task Branch
Quick Start
Before modifying repository files for a new task, start from a fresh branch based on origin/main:
git fetch origin
git switch --create feat/short-description origin/main
Workflow
- Check the current branch and working tree with
git status --short --branch. - If there are uncommitted changes, do not switch branches or modify them without asking the user how to proceed.
- Fetch the latest remote refs with
git fetch origin. - Create the task branch from
origin/main, not localmain. - Use a branch name aligned with conventional commits.
- Continue with the requested implementation only after the fresh branch is active.