Continue Project PROJ-$0
Protocols:
- •
Projects/protocols/02_plan_protocol.md(how to use the plan) - •
Projects/protocols/03a_continue_working.md(autonomous work loop)
Read and follow both protocol files.
Execution
- •
LOAD the project plan:
Projects/active_projects/PROJ-$0/plan.md - •
READ
## Current Stateto understand where we left off. - •
RUN project status scripts:
bashpython Projects/scripts/project_status.py PROJ-$0 python Projects/scripts/current_task.py PROJ-$0
- •
EXECUTE the autonomous work loop:
- •Work through tasks using Strict TDD
- •Use
pytest tests/ --testmonfor incremental testing (fast) - •Use
pytest tests/path/to/test.py --testmonfor targeted tests - •Check off completed subtasks
- •Add implementation notes
- •Continue until context limit (~80%) or phase complete
- •
BEFORE STOPPING:
- •Run phase validation:
bash
python Projects/scripts/validate_phase.py PROJ-$0 [current_phase]
- •Update
## Current Statewith comprehensive handoff - •Provide session summary
- •Run phase validation:
NOTE: If first session on a new project, run pytest tests/ (full, no --testmon) first.
CONSTRAINT: Tests MUST be written BEFORE implementation (Strict TDD).