بنقرة واحدة
ae-sdd-plan
Research, plan, and prepare for implementation
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Research, plan, and prepare for implementation
التثبيت باستخدام 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-plan |
| description | Research, plan, and prepare for implementation |
Research the codebase and create an implementation plan. Full lane plans one task at a time; vibe/bug combines discovery + tasking + planning into one pass.
spec-driven-development (state/task management, lane detection)research[!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.
Full lane:
planae sdd task current [name]ae sdd task start [name] to move next pending task to in_progressthoughts/ (discovery outputs)Vibe/Bug lane:
thoughts/ if they existDialogue: Before writing, summarize research findings. If a path is clear, present your recommendation with reasoning. If you see questions, trade-offs, or risks, discuss them with opinions and recommendations. Collaborate through back-and-forth until direction is right.
Plan contents (all lanes):
Validation plan format:
Full lane output:
changes/<name>/plans/<NN>.mdVibe/Bug lane output:
changes/<name>/plan.mdDo not update phase status in this command. When the user wants to proceed, suggest ae-sdd-next <name> to advance into implement.
Full lane planning with dialogue:
Input: "password-reset" (full lane, task 2 pending)
Output: "Validated tasks—no in-progress tasks. Started task 2. Read task 2 and thoughts/.
Research shows extending auth/login/validator.ts fits DRY.
One concern: validator is getting large. Address now or focus on reset?"
User: "Stay focused on reset. Show me the plan."
Output: "Created plans/02.md with exhaustive breakdown: file-by-file changes,
code snippets for validator.js, auth/routes.js, tests, validation checklist."
Vibe lane with clear recommendation:
Input: "bug-fix" (vibe lane)
Output: "Read thoughts/. Found consistent fix pattern in router/middleware.ts.
Applying that keeps codebase uniform. Created plan.md with exhaustive breakdown:
exact changes to middleware.ts, code snippet, test updates, validation steps."