aide:build -- AIDE: Autonomous Intent-Driven Engineering
- Published
- Source commit
5e7817d
/aide:build — Build Phase
Agent: This command is executed by the
aide-implementoragent.
Execute the architect's implementation plan. This is the implementor phase in build mode — the session that turns plan.aide into working, tested code without making architectural decisions mid-session.
Checklist
- Read
plan.aidein the target module. This is the primary input — it names files, sequencing, contracts, and which existing helpers to reuse - Read the intent spec (
.aideorintent.aide) for the target module. The plan tells you what to build; the spec tells you what counts as correct - Execute the plan steps top-to-bottom. Check each checkbox in
plan.aideas you complete it. Do not reorder steps, skip steps, or add steps. If a step is ambiguous, stop and escalate back to the architect via/aide:planrather than inventing an answer - Write the code. No architectural improvisation — if a decision is not in the plan or the spec, it is out of scope for this session
- Write tests covering every behavior the spec's
outcomes.desirednames, plus regression coverage for anything inoutcomes.undesired - Run the tests until green
- Run the type checker (
tsc --noEmitor the project's equivalent) - Run
aide_validateto check for spec issues introduced during the build - Hand off to
/aide:qa— the QA agent will compare actual output against the spec'soutcomesblock