원클릭으로
ae-sdd-implement
Execute the implementation plan
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Execute the implementation plan
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Fast-track bug investigation and fix initialization
Create high-quality git commits with clear Conventional Commit messages
Continue an SDD change set in a fresh chat using CLI status only
Critique proposal, specs, or plan for gaps and contradictions
Discover high-level architectural requirements for change-set specs
Explain SDD concepts, workflow, and CLI-first usage
| name | ae-sdd-implement |
| description | Execute the implementation plan |
Execute the current implementation plan. Follow the plan step by step, validate as you go, keep the repo green.
spec-driven-development (state/task management, lane detection)researchagent-browser (required when implementing frontend work to validate behavior, semantics, and computed CSS)[!IMPORTANT] Resolve the change set by running
ls changes/ | grep -v archive/. If exactly one directory exists, use it. Only prompt the user when multiple change sets are present.
Load spec-driven-development skill and read state from changes/<name>/state.toml. Apply state entry check per skill guidelines.
Read tasks from changes/<name>/tasks.toml if full lane.
Determine lane and load plan:
changes/<name>/plans/changes/<name>/plan.md (single combined plan)Full lane phase/task entry checks:
implementin_progress before executionExecute the plan step by step:
research skill for unexpected code structure or integration questionsagent-browser skill to validate the implemented result in a browserHandle issues:
Run validation steps from plan, verify acceptance criteria, ensure tests pass.
Full lane completion:
ae sdd task complete [name] (or ae sdd task complete --next [name] when explicitly chaining tasks)tasks.toml task status when CLI task commands are availableae-sdd-next <name>:
ae-sdd-next should deterministically loop implement -> planae-sdd-next should advance implement -> reconcileVibe/Bug lane completion:
ae-sdd-next <name> (optional)Full lane implementing a task:
Input: None (change: "password-reset")
Output: "Loading plan 01.md to implement password validator changes."
Follows steps: update validator.ts, add reset logic, update tests.
Validation: All tests pass.
User: "Looks good."
Output: "Marked task 1 complete. Three tasks remaining—run ae-sdd-next to loop back to plan for the next task."
Vibe lane quick fix:
Input: "bug-fix" (user has context with plan.md)
Output: "Following plan.md to patch router/routes.ts."
Implementation complete, tests pass.
User: "Great, keep this work."
Output: "Implementation looks complete. If you want to advance phase, run ae-sdd-next."