User Input
$ARGUMENTS
You MUST consider the user input before proceeding (if not empty).
Pre-Execution Checks
Check for extension hooks (before planning):
Check if .specify/extensions.yml exists in the project root.
If it exists, read it and look for entries under the hooks.before_plan key
If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally
Filter out hooks where enabled is explicitly false. Treat hooks without an enabled field as enabled by default.
For each remaining hook, do not attempt to interpret or evaluate hook condition expressions:
- If the hook has no
condition field, or it is null/empty, treat the hook as executable
- If the hook defines a non-empty
condition, skip the hook and leave condition evaluation to the HookExecutor implementation
When constructing slash commands from hook command names, replace dots (.) with hyphens (-). For example, speckit.git.commit → /speckit-git-commit.
For each executable hook, output the following based on its optional flag:
Optional hook (optional: true):
## Extension Hooks
**Optional Pre-Hook**: {extension}
Command: `/{command}`
Description: {description}
Prompt: {prompt}
To execute: `/{command}`
Mandatory hook (optional: false):
## Extension Hooks
**Automatic Pre-Hook**: {extension}
Executing: `/{command}`
EXECUTE_COMMAND: {command}
Wait for the result of the hook command before proceeding to the Outline.
After emitting the block above you MUST actually invoke the hook and wait for it to finish before continuing. Run it the same way you would run the command yourself in this agent/session (the invocation may differ from the literal {command} id shown above, e.g. a skills-mode agent runs it as /skill:speckit-... or $speckit-...). Emitting the block alone does not run the hook.
If no hooks are registered or .specify/extensions.yml does not exist, skip silently
Outline
Setup: Run .specify/scripts/powershell/setup-plan.ps1 -Json from repo root and parse JSON for FEATURE_SPEC, IMPL_PLAN, SPECS_DIR, BRANCH. For single quotes in args like "I'm Groot", use escape syntax: e.g 'I'''m Groot' (or double-quote if possible: "I'm Groot").
Load context: Read FEATURE_SPEC and .specify/memory/constitution.md. Load IMPL_PLAN template (already copied).
Execute plan workflow: Follow the structure in IMPL_PLAN template to:
- Fill Technical Context (mark unknowns as "NEEDS CLARIFICATION")
- Fill Constitution Check section from constitution
- Evaluate gates (ERROR if violations unjustified)
- Phase 0: Generate research.md (resolve all NEEDS CLARIFICATION)
- Phase 1: Generate data-model.md, contracts/, quickstart.md
- Phase 1: Update agent context by running the agent script
- Re-evaluate Constitution Check post-design
Mandatory Post-Execution Hooks
You MUST complete this section before reporting completion to the user.
Check if .specify/extensions.yml exists in the project root.
- If it does not exist, or no hooks are registered under
hooks.after_plan, skip to the Completion Report.
- If it exists, read it and look for entries under the
hooks.after_plan key.
- If the YAML cannot be parsed or is invalid, skip hook checking silently and continue to the Completion Report.
- Filter out hooks where
enabled is explicitly false. Treat hooks without an enabled field as enabled by default.
- For each remaining hook, do not attempt to interpret or evaluate hook
condition expressions:
- If the hook has no
condition field, or it is null/empty, treat the hook as executable
- If the hook defines a non-empty
condition, skip the hook and leave condition evaluation to the HookExecutor implementation
- When constructing slash commands from hook command names, replace dots (
.) with hyphens (-). For example, speckit.git.commit → /speckit-git-commit.
- For each executable hook, output the following based on its
optional flag:
Mandatory hook (optional: false) — You MUST emit EXECUTE_COMMAND: for each mandatory hook:
## Extension Hooks
**Automatic Hook**: {extension}
Executing: `/{command}`
EXECUTE_COMMAND: {command}
After emitting the block above you MUST actually invoke the hook and wait for it to finish before continuing. Run it the same way you would run the command yourself in this agent/session (the invocation may differ from the literal {command} id shown above, e.g. a skills-mode agent runs it as /skill:speckit-... or $speckit-...). Emitting the block alone does not run the hook.
Optional hook (optional: true):
## Extension Hooks
**Optional Hook**: {extension}
Command: `/{command}`
Description: {description}
Prompt: {prompt}
To execute: `/{command}`
Completion Report
Command ends after Phase 2 planning. Report branch, IMPL_PLAN path, and generated artifacts.
Phases
Phase 0: Outline & Research
Extract unknowns from Technical Context above:
- For each NEEDS CLARIFICATION → research task
- For each dependency → best practices task
- For each integration → patterns task
Generate and dispatch research agents:
For each unknown in Technical Context:
Task: "Research {unknown} for {feature context}"
For each technology choice:
Task: "Find best practices for {tech} in {domain}"
Consolidate findings in research.md using format:
- Decision: [what was chosen]
- Rationale: [why chosen]
- Alternatives considered: [what else evaluated]
Output: research.md with all NEEDS CLARIFICATION resolved
Phase 1: Design & Contracts
Prerequisites: research.md complete
Extract entities from feature spec → data-model.md:
- Entity name, fields, relationships
- Validation rules from requirements
- State transitions if applicable
Define interface contracts (if project has external interfaces) → /contracts/:
- Identify what interfaces the project exposes to users or other systems
- Document the contract format appropriate for the project type
- Examples: public APIs for libraries, command schemas for CLI tools, endpoints for web services, grammars for parsers, UI contracts for applications
- Skip if project is purely internal (build scripts, one-off tools, etc.)
Create quickstart validation guide → quickstart.md:
- Document runnable validation scenarios that prove the feature works end-to-end
- Include prerequisites, setup commands, test/run commands, and expected outcomes
- Use links or references to contracts and data model details instead of duplicating them
- Do not include full implementation code, model/service/controller bodies, migrations, or complete test suites
- Keep this artifact as a validation/run guide; implementation details belong in
tasks.md and the implementation phase
Agent context update:
- Update the plan reference between the
<!-- SPECKIT START --> and <!-- SPECKIT END --> markers in AGENTS.md to point to the plan file created in step 1 (the IMPL_PLAN path)
Output: data-model.md, /contracts/*, quickstart.md, updated agent context file
Key rules
- Use absolute paths for filesystem operations; use project-relative paths for references in documentation and agent context files
- ERROR on gate failures or unresolved clarifications
Done When
1---2name: speckit-plan3description: Execute the implementation planning workflow using the plan template to generate design artifacts.4---56## User Input78```text9$ARGUMENTS10```1112You **MUST** consider the user input before proceeding (if not empty).1314## Pre-Execution Checks1516**Check for extension hooks (before planning)**:1718- Check if `.specify/extensions.yml` exists in the project root.19- If it exists, read it and look for entries under the `hooks.before_plan` key20- If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally21- Filter out hooks where `enabled` is explicitly `false`. Treat hooks without an `enabled` field as enabled by default.22- For each remaining hook, do **not** attempt to interpret or evaluate hook `condition` expressions:23 - If the hook has no `condition` field, or it is null/empty, treat the hook as executable24 - If the hook defines a non-empty `condition`, skip the hook and leave condition evaluation to the HookExecutor implementation25- When constructing slash commands from hook command names, replace dots (`.`) with hyphens (`-`). For example, `speckit.git.commit` → `/speckit-git-commit`.26- For each executable hook, output the following based on its `optional` flag:27 - **Optional hook** (`optional: true`):2829 ```30 ## Extension Hooks3132 **Optional Pre-Hook**: {extension}33 Command: `/{command}`34 Description: {description}3536 Prompt: {prompt}37 To execute: `/{command}`38 ```3940 - **Mandatory hook** (`optional: false`):4142 ```43 ## Extension Hooks4445 **Automatic Pre-Hook**: {extension}46 Executing: `/{command}`47 EXECUTE_COMMAND: {command}4849 Wait for the result of the hook command before proceeding to the Outline.50 ```5152 After emitting the block above you MUST actually invoke the hook and wait for it to finish before continuing. Run it the same way you would run the command yourself in this agent/session (the invocation may differ from the literal `{command}` id shown above, e.g. a skills-mode agent runs it as `/skill:speckit-...` or `$speckit-...`). Emitting the block alone does not run the hook.5354- If no hooks are registered or `.specify/extensions.yml` does not exist, skip silently5556## Outline57581. **Setup**: Run `.specify/scripts/powershell/setup-plan.ps1 -Json` from repo root and parse JSON for FEATURE_SPEC, IMPL_PLAN, SPECS_DIR, BRANCH. For single quotes in args like "I'm Groot", use escape syntax: e.g 'I'''m Groot' (or double-quote if possible: "I'm Groot").59602. **Load context**: Read FEATURE_SPEC and `.specify/memory/constitution.md`. Load IMPL_PLAN template (already copied).61623. **Execute plan workflow**: Follow the structure in IMPL_PLAN template to:63 - Fill Technical Context (mark unknowns as "NEEDS CLARIFICATION")64 - Fill Constitution Check section from constitution65 - Evaluate gates (ERROR if violations unjustified)66 - Phase 0: Generate research.md (resolve all NEEDS CLARIFICATION)67 - Phase 1: Generate data-model.md, contracts/, quickstart.md68 - Phase 1: Update agent context by running the agent script69 - Re-evaluate Constitution Check post-design7071## Mandatory Post-Execution Hooks7273**You MUST complete this section before reporting completion to the user.**7475Check if `.specify/extensions.yml` exists in the project root.7677- If it does not exist, or no hooks are registered under `hooks.after_plan`, skip to the Completion Report.78- If it exists, read it and look for entries under the `hooks.after_plan` key.79- If the YAML cannot be parsed or is invalid, skip hook checking silently and continue to the Completion Report.80- Filter out hooks where `enabled` is explicitly `false`. Treat hooks without an `enabled` field as enabled by default.81- For each remaining hook, do **not** attempt to interpret or evaluate hook `condition` expressions:82 - If the hook has no `condition` field, or it is null/empty, treat the hook as executable83 - If the hook defines a non-empty `condition`, skip the hook and leave condition evaluation to the HookExecutor implementation84- When constructing slash commands from hook command names, replace dots (`.`) with hyphens (`-`). For example, `speckit.git.commit` → `/speckit-git-commit`.85- For each executable hook, output the following based on its `optional` flag:86 - **Mandatory hook** (`optional: false`) — **You MUST emit `EXECUTE_COMMAND:` for each mandatory hook**:8788 ```89 ## Extension Hooks9091 **Automatic Hook**: {extension}92 Executing: `/{command}`93 EXECUTE_COMMAND: {command}94 ```9596 After emitting the block above you MUST actually invoke the hook and wait for it to finish before continuing. Run it the same way you would run the command yourself in this agent/session (the invocation may differ from the literal `{command}` id shown above, e.g. a skills-mode agent runs it as `/skill:speckit-...` or `$speckit-...`). Emitting the block alone does not run the hook.9798 - **Optional hook** (`optional: true`):99100 ```101 ## Extension Hooks102103 **Optional Hook**: {extension}104 Command: `/{command}`105 Description: {description}106107 Prompt: {prompt}108 To execute: `/{command}`109 ```110111## Completion Report112113Command ends after Phase 2 planning. Report branch, IMPL_PLAN path, and generated artifacts.114115## Phases116117### Phase 0: Outline & Research1181191. **Extract unknowns from Technical Context** above:120 - For each NEEDS CLARIFICATION → research task121 - For each dependency → best practices task122 - For each integration → patterns task1231242. **Generate and dispatch research agents**:125126 ```text127 For each unknown in Technical Context:128 Task: "Research {unknown} for {feature context}"129 For each technology choice:130 Task: "Find best practices for {tech} in {domain}"131 ```1321333. **Consolidate findings** in `research.md` using format:134 - Decision: [what was chosen]135 - Rationale: [why chosen]136 - Alternatives considered: [what else evaluated]137138**Output**: research.md with all NEEDS CLARIFICATION resolved139140### Phase 1: Design & Contracts141142**Prerequisites:** `research.md` complete1431441. **Extract entities from feature spec** → `data-model.md`:145 - Entity name, fields, relationships146 - Validation rules from requirements147 - State transitions if applicable1481492. **Define interface contracts** (if project has external interfaces) → `/contracts/`:150 - Identify what interfaces the project exposes to users or other systems151 - Document the contract format appropriate for the project type152 - Examples: public APIs for libraries, command schemas for CLI tools, endpoints for web services, grammars for parsers, UI contracts for applications153 - Skip if project is purely internal (build scripts, one-off tools, etc.)1541553. **Create quickstart validation guide** → `quickstart.md`:156 - Document runnable validation scenarios that prove the feature works end-to-end157 - Include prerequisites, setup commands, test/run commands, and expected outcomes158 - Use links or references to contracts and data model details instead of duplicating them159 - Do not include full implementation code, model/service/controller bodies, migrations, or complete test suites160 - Keep this artifact as a validation/run guide; implementation details belong in `tasks.md` and the implementation phase1611624. **Agent context update**:163 - Update the plan reference between the `<!-- SPECKIT START -->` and `<!-- SPECKIT END -->` markers in `AGENTS.md` to point to the plan file created in step 1 (the IMPL_PLAN path)164165**Output**: data-model.md, /contracts/\*, quickstart.md, updated agent context file166167## Key rules168169- Use absolute paths for filesystem operations; use project-relative paths for references in documentation and agent context files170- ERROR on gate failures or unresolved clarifications171172## Done When173174- [ ] Plan workflow executed and design artifacts generated175- [ ] Extension hooks dispatched or skipped according to the rules in Mandatory Post-Execution Hooks above176- [ ] Completion reported to user with branch, plan path, and generated artifacts