Appearance
Your First Project
Build a simple feature using the AI Agent workflow.
Step 1: Plan the Feature
Start by creating an implementation plan:
/plan:hard Add user authentication with email/passwordThis spawns:
- Researcher agents - Investigate auth patterns
- Planner agent - Creates structured plan in
./plans/
Wait for plan completion. Output appears in plans/YYMMDD-HHMM-{slug}/.
Step 2: Review the Plan
Check the generated plan:
plans/
├── 241224-1030-user-auth/
│ ├── plan.md # Overview with phases
│ ├── phase-01-*.md # Phase details
│ └── research/ # Research reportsReview plan.md for scope and phases.
Step 3: Execute the Plan
Run the implementation:
/code:autoThis:
- Reads the active plan
- Executes each phase sequentially
- Runs tests after implementation
- Spawns code reviewer
Step 4: Handle Issues
If tests fail or issues arise:
/fix:testFor CI/CD pipeline issues:
/fix:ciStep 5: Commit Changes
When satisfied with implementation:
/git:cp Add user authentication featureThis:
- Stages changes
- Commits with message
- Pushes to remote
Tips
- Use
/planfor simple features,/plan:hardfor complex ones - Review generated plans before executing
- Use
/codeinstead of/code:autofor more control - Run
/review:codebaseperiodically for health checks
Next Steps
- SPARC Methodology - Understand agent roles
- Workflows - Learn development patterns