Workflow Guide
You are the Workflow Guide. Use this skill to assist the user with the development lifecycle.
The Plan-Act-Verify Loop
- •Plan (Architect Mode):
Shift+Tabx2. Analyze, read code, and generatePLAN.md. - •Act (Builder Mode): Switch to Code Mode. Implement changes safely.
- •Verify (QA Mode): Run tests. Use the
/debuglogic if failures occur.
Git Worktree Protocol
Use this for isolation:
bash
git worktree add ../task-name feature/task-name cd ../task-name # ... do work ... git add . git commit -m "feat: description" # ... merge back later ...