SOP: Running an AI Sprint
Quick Reference
Purpose: Guide developers on how to initiate and manage an AI-driven development sprint. Prerequisites: Project initialized with cm init.
Procedure
Step 1: Brainstorming
Start the sprint by brainstorming the task.
bash
cm sprint brainstormThis generates initial ideas and architectural approaches.
Step 2: Planning
Draft the implementation plan.
bash
cm sprint planReview the generated implementation_plan.md.
Step 3: Execution
Run the agent to implement the plan.
bash
cm sprint executeStep 4: Quality Gates
Ensure all code passes the Guardian pipeline.
bash
npm run test:gate:kitTroubleshooting
If the agent gets stuck in a loop, use cm sprint halt to stop execution and manually review the context.
WARNING
Never skip the Quality Gates (Step 4) before pushing code to production.