Start executing the architecture plan from step 1
Status: Active
Begin executing the architecture plan by starting from step 1. This skill transitions from planning to execution and implements the first step.
/arch-start
Run /arch [request] first to generate the architecture artifacts.
Confirm these files exist:
.claude/arch/TASK_GRAPH.json.claude/arch/state.jsonIf either is missing, stop and output:
Error: Architecture artifacts not found.
Run /arch [request] first to generate the plan.
Run this command:
python scripts/arch_session.py start
This will:
phase to "executing"current_step to the first step IDRead .claude/arch/TASK_GRAPH.json and find the current step. Display:
Current Step: [id] - [title]
Goal: [goal]
Allowed Paths: [allowed_paths]
Verification: [verification commands]
Success Criteria: [success_criteria]
Implement the goal described in the current step.
CRITICAL CONSTRAINTS:
allowed_paths for this stepAfter implementing, run each verification command listed for the step:
# Run each command from the step's "verification" array
[verification command 1]
[verification command 2]
...
After verification, output the results and stop:
If verification passes:
Step [id] implementation complete.
Verification passed.
Run /arch-next to advance to the next step.
If verification fails:
Step [id] implementation complete.
Verification FAILED:
[error output]
Fix the issues and re-run verification, then run /arch-next.
allowed_paths for the current step/arch-next to advance