Execute all tasks in a project phase in order. Invoke as /execute-phase <number> (e.g. /execute-phase 01).
Execute Phase $ARGUMENTS following the project's phase execution procedure.
Read these files before doing anything else:
docs/spec/phase-execution.md — the phase execution procedure you must followdocs/spec/task-execution.md — the per-task execution proceduredocs/spec/instructions.md — code quality rules, validation gates, git workflowdocs/spec/architecture.md — patterns and decisionsdocs/plan/phase-$ARGUMENTS/index.md — the phase goal, prerequisites, and all tasksBefore touching any code, complete every item from docs/spec/phase-execution.md:
For each task in docs/plan/phase-$ARGUMENTS/index.md with status new, in order:
/execute-task <task-id> — follow docs/spec/task-execution.md fullypnpm nx affected -t test — fix any failures before moving to the next taskdone and tests are greenWhen all tasks have status done:
pnpm nx run-many -t typecheck
pnpm nx run-many -t lint
pnpm nx run-many -t test
pnpm nx build web
pnpm nx build web && pnpm nx start web — confirm the phase goal holds against built outputdone in the relevant task files under docs/plan/phase-$ARGUMENTS/