Skip to content

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 brainstorm

This generates initial ideas and architectural approaches.

Step 2: Planning

Draft the implementation plan.

bash
cm sprint plan

Review the generated implementation_plan.md.

Step 3: Execution

Run the agent to implement the plan.

bash
cm sprint execute

Step 4: Quality Gates

Ensure all code passes the Guardian pipeline.

bash
npm run test:gate:kit
Troubleshooting

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.

CodyMaster — AI-assisted engineering toolkit