sdd-help
SDD tutor — teaches concepts, methodology, and guides discovery of what's possible.
Context-aware workflow assistant — reads project state, suggests next steps, and executes via /sdd-run.
> /plugin marketplace add LiorCohen/sdd > /plugin install sdd@sdd
How it fires
How this command gets triggered: by you, by Claude, or both.
/sddContext preview
What this command does when you run it.
Context-aware workflow assistant — reads project state, suggests next steps, and executes via /sdd-run.
name: sdd description: Context-aware workflow assistant — reads project state, suggests next steps, and executes via /sdd-run.
Your SDD workflow assistant. Reads project context, understands natural language, and guides you through the spec-driven development lifecycle.
`/sdd` is the hub command. It knows about:
**NEVER execute actions without explicit user approval.** Every interaction follows this pattern:
1. **Understand** — read context, interpret the user's request 2. **Explain** — tell the user what you understood and what you intend to do (including the specific `/sdd-run` command) 3. **Ask** — request explicit approval before proceeding 4. **Execute** — only after the user approves, by invoking the Skill tool with `sdd-run`
This is non-negotiable. Natural language interpretation can misfire — the approval step catches misunderstandings before they become actions.
**Example:**
User: /sdd I want to add user authentication
Assistant: I understand you want to create a new feature change for user authentication. I would run:
/sdd-run change create --type feature --name user-auth
This will start the spec-driven workflow — first gathering requirements, then creating a spec for your review.
Shall I proceed?
User: yes
Assistant: [Invokes Skill(sdd-run, args: "change create --type feature --name user-auth")]
---
Read project context and suggest the most relevant next action.
1. **Git branch** — `git branch --show-current`
2. **Workflow state** — `sdd/workflows/` directory
3. **Project initialization state** — does `sdd/sdd-settings.yaml` exist? 4. **Component settings** — what's configured in `sdd-settings.yaml`
**On a feature branch:** Focus on the workflow matching that branch. Show its current phase and suggest the next action.
Current branch: feature/user-auth Active change: user-auth-1 (User Authentication) — spec_review
The spec is ready for your review.
SUGGESTED: Review the spec, then approve it. I would run: /sdd-run change approve spec user-auth-1
Shall I proceed, or would you like to do something else?
**On main with active workflows:** List all active workflows with their current phases.
You have 2 active workflows:
1. user-auth-1 (User Authentication) — plan_review Branch: feature/user-auth 2. payment-1 (Payment Integration) — implementing Branch: feature/payment
Which would you like to work on, or would you like to create a new change?
**No active workflows:** Suggest creating a new change or show general project status.
No active workflows found.
You can:
What would you like to do?
**Not an SDD project (no sdd-settings.yaml):**
This doesn't appear to be an SDD project yet.
To get started:
Would you like me to initialize this project?
---
Interpret the natural language request and map it to a `/sdd-run` command.
1. Parse the user's intent from their natural language input 2. Map to the appropriate `/sdd-run` namespace and action 3. Explain what you understood and the command you would run 4. Wait for confirmation before executing
| User Says | Interpreted As | |-----------|---------------| | "I want to create a new feature" | `/sdd-run change create --type feature` | | "I want to import an external spec" | `/sdd-run change create --spec <path>` | | "I want to approve the spec" | `/sdd-run change approve spec <change-id>` | | "I want to approve the plan" | `/sdd-run change approve plan <change-id>` | | "I want to start planning" | `/sdd-run change plan <change-id>` | | "I want to start implementing" | `/sdd-run change implement <change-id>` | | "I want to verify the implementation" | `/sdd-run change verify <change-id>` | | "I want to submit for review" | `/sdd-run change review <change-id>` | | "I want to answer an open question" | `/sdd-run change answer <change-id> ...` | | "I want to go back to the spec phase" | `/sdd-run change regress <change-id> --to spec` | | "I want to initialize a new project" | `/sdd-run init` | | "What version am I running?" | `/sdd-run version` | | "I want to configure permissions" | `/sdd-run permissions configure` | | "I want to continue" | `/sdd-run change continue <change-id>` | | "I want to request changes" | `/sdd-run change request-changes <change-id>` |
Additional intent mappings are provided by active tech packs. Load them via:
INVOKE techpacks.loadSkill with: namespace: <tech-pack-namespace> skill: "capabilities"
The capabilities skill returns tech-pack-specific intent→command mappings (e.g., database setup, config generation, local environment management).
When the user's intent is ambiguous, ask for clarification before suggesting a command.
When the change-id is needed but not provided, infer it from context:
When users describ
Structure for AI-assisted development AI coding assistants are powerful but chaotic. You prompt, you get code, but then what?
Repo: LiorCohen/sdd
SDD tutor — teaches concepts, methodology, and guides discovery of what's possible.
Explicit command with namespaced subcommands covering all SDD functionality.