Propose
Scaffold a new change under .sdd/changes/<change-name>/ from the name or idea the user provided.
- If the project has root-level
specs/,changes/, and/orarchive/directories from before the.sdd/convention, and no.sdd/directory exists yet, move whichever of those three are present to.sdd/specs/,.sdd/changes/, and.sdd/archive/respectively (via bash:mkdir -p .sdd && mv <dir> .sdd/, creating.sdd/first), then tell the user what was moved before continuing. - Derive a short kebab-case
<change-name>from the user's name or idea (e.g. "add dark mode toggle" →add-dark-mode). If no name or idea was provided, ask the user for one before continuing. - If
.sdd/changes/<change-name>/already exists, tell the user and ask whether to continue editing it instead of creating a new one. - Read the templates at
templates/proposal.md,templates/design.md,templates/tasks.md, andtemplates/spec.md(paths relative to this package's root; from this skill file:../../templates/) to see the expected structure. Do not copy their placeholder text verbatim — use them only as a shape to fill in with real content. - Investigate the existing codebase and any existing
.sdd/specs/in the user's project enough to write a grounded proposal — reuse existing patterns and conventions rather than inventing new ones. - Before writing
design.md, resolve any non-obvious technical or scope decision — one with real alternatives where the choice would materially affect the approach — by asking the user with the clarification UI (theclarification_uitool). List the recommended option first, marked "(Recommended)", plus up to three genuine alternatives; the UI's free-text option covers anything else. Fold the resolved answer intodesign.md's## Technical Approachorproposal.md's## Scope/## Approachas a decision with brief rationale — don't leave it as an open question. Only decisions that truly cannot be known until implementation belong indesign.md's## Open Questions. - Create these files, writing real content (not placeholders):
.sdd/changes/<change-name>/proposal.md— problem, scope (in/out), approach, acceptance criteria..sdd/changes/<change-name>/design.md— technical approach, architecture notes, and any open questions. Skip sections that add no value for a small change..sdd/changes/<change-name>/tasks.md— a checkbox list of small, independently verifiable implementation steps, ordered sensibly..sdd/changes/<change-name>/specs/*.md— one file per affected capability, using Given/When/Then scenarios (#### Scenario:/- **WHEN** .../- **THEN** ...) pertemplates/spec.md. These describe the proposed behavior; they are not yet the project's authoritative specs.
- Summarize what was created and suggest
/sdd:applyas the next step.
Never write application code in this step — only planning artifacts.