Best for:
- direct code changes
- incremental commits
- tight implement-test loops
Recommended pattern:
- Feed Codex the Plan Lock + Tasks.
- Execute one task at a time.
- Require tests or smoke checks per task.
- Use autopilot loop: implement → test → fix → doc → summarize
Avoid:
- expecting deep architecture without Plan Lock
Note: PIOS is an execution contract layer, not a runtime platform. Follow these strict validations explicitly.
- Status Check: Run
pios statusto check the current project phase before starting work. - Task Scope: Only check out and work on tasks marked
[ ]intemplates/tasks.md. Update them to[/]while in progress, and[x]when completed. - Phase Validation: You must run
pios validateand ensure it passes before concluding a phase gate.