description: Create or update a feature spec from a description
handoffs:
- label: Build Technical Plan
agent: speckit.plan
prompt: Create a plan for the spec. I am building with...
- label: Clarify Spec Requirements
agent: speckit.clarify
prompt: Clarify specification requirements
send: true
scripts:
sh: scripts/bash/create-new-feature.sh "{ARGS}"
ps: scripts/powershell/create-new-feature.ps1 "{ARGS}"
User Input
$ARGUMENTS
You MUST consider the user input before proceeding (if not empty).
Outline
The text the user typed after /speckit.specify in the triggering message is the feature description. Assume you always have it available in this conversation even if {ARGS} appears literally below. Do not ask the user to repeat it unless they provided an empty command.
Given that feature description, do this:
Generate a concise short name (2-4 words) for the branch:
- Analyze the feature description and extract the most meaningful keywords
- Create a 2-4 word short name that captures the essence of the feature
- Use action-noun format when possible (e.g., "add-user-auth", "fix-payment-bug")
- Preserve technical terms and acronyms (OAuth2, API, JWT, etc.)
- Keep it concise but descriptive enough to understand the feature at a glance
- Examples:
- "I want to add user authentication" → "user-auth"
- "Implement OAuth2 integration for the API" → "oauth2-api-integration"
- "Create a dashboard for analytics" → "analytics-dashboard"
- "Fix payment processing timeout bug" → "fix-payment-timeout"
Confirm branch creation with the user BEFORE running the script. The script's default behaviour is to git checkout -b <new-branch>, which is destructive (it changes the user's checked-out branch and leaves any uncommitted spec edits on a fresh branch the user did not consent to). Some maintainers want a new branch every time; others prefer to keep spec work on the current branch and bundle it with other in-flight changes.
- Show the user the proposed branch name (e.g.
2026-05-07-user-auth) and ask whether to create it.
- Phrasing:
"I'll create a new branch named '<proposed-branch-name>' for this spec. Reply 'no branch' (or 'stay on current branch') if you'd rather keep spec edits on '<current-branch>'."
- Default if the user does not respond / responds ambiguously: create the branch (matches today's behaviour). But if the user has already said something like "don't create a new branch" earlier in the session — honour that without re-asking.
- If the user declines, pass
--no-branch to the script in the next step. The script will still create the spec folder under docs/docs/specs/<branch-name>/ and write spec.md; only the git checkout -b is skipped.
Create the spec folder (and optionally the feature branch) by running the script with --short-name (and --json). The script uses today's date (YYYY-MM-DD) as the spec folder / branch prefix — no numbering needed:
- Bash example (branch):
{SCRIPT} --json --short-name "user-auth" "Add user authentication"
- Bash example (no branch):
{SCRIPT} --json --no-branch --short-name "user-auth" "Add user authentication"
- PowerShell example:
{SCRIPT} -Json -ShortName "user-auth" "Add user authentication"
IMPORTANT:
- Do NOT pass
--number — that flag no longer exists; the prefix is always today's date
- Always include the JSON flag (
--json for Bash, -Json for PowerShell) so the output can be parsed reliably
- Pass
--no-branch (Bash) if step 2's user confirmation came back negative. (Bash only — PowerShell support is not yet implemented.)
- You must only ever run this script once per feature
- The JSON is provided in the terminal as output - always refer to it to get the actual content you're looking for
- The JSON output will contain BRANCH_NAME and SPEC_FILE paths (e.g.
2026-05-07-user-auth). When --no-branch was passed, BRANCH_NAME is the would-be name — the spec folder under docs/docs/specs/ is named after it, but the user's checked-out branch is unchanged.
- 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 templates/spec-template.md to understand required sections.
Follow this execution flow:
- Parse user description from Input
If empty: ERROR "No feature description provided"
- Extract key concepts from description
Identify: actors, actions, data, constraints
- For unclear aspects:
- Make informed guesses based on context and industry standards
- Only mark with [NEEDS CLARIFICATION: specific question] if:
- The choice significantly impacts feature scope or user experience
- Multiple reasonable interpretations exist with different implications
- No reasonable default exists
- LIMIT: Maximum 3 [NEEDS CLARIFICATION] markers total
- Prioritize clarifications by impact: scope > security/privacy > user experience > technical details
- Fill User Scenarios & Testing section
If no clear user flow: ERROR "Cannot determine user scenarios"
- Generate Functional Requirements
Each requirement must be testable
Use reasonable defaults for unspecified details (document assumptions in Assumptions section)
- Define Success Criteria
Create measurable, technology-agnostic outcomes
Include both quantitative metrics (time, performance, volume) and qualitative measures (user satisfaction, task completion)
Each criterion must be verifiable without implementation details
- Identify Key Entities (if data involved)
- Return: SUCCESS (spec ready for planning)
Write the specification to SPEC_FILE using the template structure, replacing placeholders with concrete details derived from the feature description (arguments) while preserving section order and headings.
Specification Quality Validation: After writing the initial spec, validate it against quality criteria:
a. Create Spec Quality Checklist: Generate a checklist file at FEATURE_DIR/checklists/requirements.md using the checklist template structure with these validation items:
# Specification Quality Checklist: [FEATURE NAME]
**Purpose**: Validate specification completeness and quality before proceeding to planning
**Created**: [DATE]
**Feature**: [Link to spec.md]
## Content Quality
- [ ] No implementation details (languages, frameworks, APIs)
- [ ] Focused on user value and business needs
- [ ] Written for non-technical stakeholders
- [ ] All mandatory sections completed
## Requirement Completeness
- [ ] No [NEEDS CLARIFICATION] markers remain
- [ ] Requirements are testable and unambiguous
- [ ] Success criteria are measurable
- [ ] Success criteria are technology-agnostic (no implementation details)
- [ ] All acceptance scenarios are defined
- [ ] Edge cases are identified
- [ ] Scope is clearly bounded
- [ ] Dependencies and assumptions identified
## Feature Readiness
- [ ] All functional requirements have clear acceptance criteria
- [ ] User scenarios cover primary flows
- [ ] Feature meets measurable outcomes defined in Success Criteria
- [ ] No implementation details leak into specification
## Notes
- Items marked incomplete require spec updates before `/speckit.clarify` or `/speckit.plan`
b. Run Validation Check: Review the spec against each checklist item:
- For each item, determine if it passes or fails
- Document specific issues found (quote relevant spec sections)
c. Handle Validation Results:
If all items pass: Mark checklist complete and proceed to step 7
If items fail (excluding [NEEDS CLARIFICATION]):
- List the failing items and specific issues
- Update the spec to address each issue
- Re-run validation until all items pass (max 3 iterations)
- If still failing after 3 iterations, document remaining issues in checklist notes and warn user
If [NEEDS CLARIFICATION] markers remain:
Extract all [NEEDS CLARIFICATION: ...] markers from the spec
LIMIT CHECK: If more than 3 markers exist, keep only the 3 most critical (by scope/security/UX impact) and make informed guesses for the rest
For each clarification needed (max 3), present options to user in this format:
## Question [N]: [Topic]
**Context**: [Quote relevant spec section]
**What we need to know**: [Specific question from NEEDS CLARIFICATION marker]
**Suggested Answers**:
| Option | Answer | Implications |
|--------|--------|--------------|
| A | [First suggested answer] | [What this means for the feature] |
| B | [Second suggested answer] | [What this means for the feature] |
| C | [Third suggested answer] | [What this means for the feature] |
| Custom | Provide your own answer | [Explain how to provide custom input] |
**Your choice**: _[Wait for user response]_
CRITICAL - Table Formatting: Ensure markdown tables are properly formatted:
- Use consistent spacing with pipes aligned
- Each cell should have spaces around content:
| Content | not |Content|
- Header separator must have at least 3 dashes:
|--------|
- Test that the table renders correctly in markdown preview
Number questions sequentially (Q1, Q2, Q3 - max 3 total)
Present all questions together before waiting for responses
Wait for user to respond with their choices for all questions (e.g., "Q1: A, Q2: Custom - [details], Q3: B")
Update the spec by replacing each [NEEDS CLARIFICATION] marker with the user's selected or provided answer
Re-run validation after all clarifications are resolved
d. Update Checklist: After each validation iteration, update the checklist file with current pass/fail status
Report completion with branch name, spec file path, checklist results, and readiness for the next phase (/speckit.clarify or /speckit.plan). If the user declined a new branch in step 2, explicitly note which branch the spec lives on (e.g. "Spec written to docs/docs/specs/2026-05-25-foo/spec.md on branch 'main' (no new branch created, per your instruction).").
NOTE: Unless --no-branch was passed in step 3, the script creates and checks out the new branch and initializes the spec file before writing. With --no-branch, only the spec folder is created and the caller's current branch is preserved.
Quick Guidelines
- Focus on WHAT users need and WHY.
- Avoid HOW to implement (no tech stack, APIs, code structure).
- Written for business stakeholders, not developers.
- DO NOT create any checklists that are embedded in the spec. That will be a separate command.
Section Requirements
- Mandatory sections: Must be completed for every feature
- Optional sections: Include only when relevant to the feature
- When a section doesn't apply, remove it entirely (don't leave as "N/A")
For AI Generation
When creating this spec from a user prompt:
- Make informed guesses: Use context, industry standards, and common patterns to fill gaps
- Document assumptions: Record reasonable defaults in the Assumptions section
- Limit clarifications: Maximum 3 [NEEDS CLARIFICATION] markers - use only for critical decisions that:
- Significantly impact feature scope or user experience
- Have multiple reasonable interpretations with different implications
- Lack any reasonable default
- Prioritize clarifications: scope > security/privacy > user experience > technical details
- Think like a tester: Every vague requirement should fail the "testable and unambiguous" checklist item
- Common areas needing clarification (only if no reasonable default exists):
- Feature scope and boundaries (include/exclude specific use cases)
- User types and permissions (if multiple conflicting interpretations possible)
- Security/compliance requirements (when legally/financially significant)
Examples of reasonable defaults (don't ask about these):
- Data retention: Industry-standard practices for the domain
- Performance targets: Standard web/mobile app expectations unless specified
- Error handling: User-friendly messages with appropriate fallbacks
- Authentication method: Standard session-based or OAuth2 for web apps
- Integration patterns: Use project-appropriate patterns (REST/GraphQL for web services, function calls for libraries, CLI args for tools, etc.)
Success Criteria Guidelines
Success criteria must be:
- Measurable: Include specific metrics (time, percentage, count, rate)
- Technology-agnostic: No mention of frameworks, languages, databases, or tools
- User-focused: Describe outcomes from user/business perspective, not system internals
- Verifiable: Can be tested/validated without knowing implementation details
Good examples:
- "Users can complete checkout in under 3 minutes"
- "System supports 10,000 concurrent users"
- "95% of searches return results in under 1 second"
- "Task completion rate improves by 40%"
Bad examples (implementation-focused):
- "API response time is under 200ms" (too technical, use "Users see results instantly")
- "Database can handle 1000 TPS" (implementation detail, use user-facing metric)
- "React components render efficiently" (framework-specific)
- "Redis cache hit rate above 80%" (technology-specific)
1---2name: speckit-specify3description: <!-- Create or update a feature spec from a description -->4---5<!-- Create or update a feature spec from a description -->6<!-- AUTO-GENERATED — DO NOT EDIT -->7<!-- Source: .specify/templates/commands/specify.md -->8<!-- Regenerate: make generate-agent-files -->910---11description: Create or update a feature spec from a description12handoffs: 13 - label: Build Technical Plan14 agent: speckit.plan15 prompt: Create a plan for the spec. I am building with...16 - label: Clarify Spec Requirements17 agent: speckit.clarify18 prompt: Clarify specification requirements19 send: true20scripts:21 sh: scripts/bash/create-new-feature.sh "{ARGS}"22 ps: scripts/powershell/create-new-feature.ps1 "{ARGS}"23---2425## User Input2627```text28$ARGUMENTS29```3031You **MUST** consider the user input before proceeding (if not empty).3233## Outline3435The text the user typed after `/speckit.specify` in the triggering message **is** the feature description. Assume you always have it available in this conversation even if `{ARGS}` appears literally below. Do not ask the user to repeat it unless they provided an empty command.3637Given that feature description, do this:38391. **Generate a concise short name** (2-4 words) for the branch:40 - Analyze the feature description and extract the most meaningful keywords41 - Create a 2-4 word short name that captures the essence of the feature42 - Use action-noun format when possible (e.g., "add-user-auth", "fix-payment-bug")43 - Preserve technical terms and acronyms (OAuth2, API, JWT, etc.)44 - Keep it concise but descriptive enough to understand the feature at a glance45 - Examples:46 - "I want to add user authentication" → "user-auth"47 - "Implement OAuth2 integration for the API" → "oauth2-api-integration"48 - "Create a dashboard for analytics" → "analytics-dashboard"49 - "Fix payment processing timeout bug" → "fix-payment-timeout"50512. **Confirm branch creation with the user BEFORE running the script.** The script's default behaviour is to `git checkout -b <new-branch>`, which is destructive (it changes the user's checked-out branch and leaves any uncommitted spec edits on a fresh branch the user did not consent to). Some maintainers want a new branch every time; others prefer to keep spec work on the current branch and bundle it with other in-flight changes.5253 - Show the user the proposed branch name (e.g. `2026-05-07-user-auth`) and ask whether to create it.54 - **Phrasing**: `"I'll create a new branch named '<proposed-branch-name>' for this spec. Reply 'no branch' (or 'stay on current branch') if you'd rather keep spec edits on '<current-branch>'."`55 - Default if the user does not respond / responds ambiguously: create the branch (matches today's behaviour). But if the user has *already* said something like "don't create a new branch" earlier in the session — **honour that without re-asking**.56 - If the user declines, pass `--no-branch` to the script in the next step. The script will still create the spec folder under `docs/docs/specs/<branch-name>/` and write `spec.md`; only the `git checkout -b` is skipped.57583. **Create the spec folder (and optionally the feature branch)** by running the script with `--short-name` (and `--json`). The script uses today's date (`YYYY-MM-DD`) as the spec folder / branch prefix — no numbering needed:5960 - Bash example (branch): `{SCRIPT} --json --short-name "user-auth" "Add user authentication"`61 - Bash example (no branch): `{SCRIPT} --json --no-branch --short-name "user-auth" "Add user authentication"`62 - PowerShell example: `{SCRIPT} -Json -ShortName "user-auth" "Add user authentication"`6364 **IMPORTANT**:65 - Do NOT pass `--number` — that flag no longer exists; the prefix is always today's date66 - Always include the JSON flag (`--json` for Bash, `-Json` for PowerShell) so the output can be parsed reliably67 - Pass `--no-branch` (Bash) if step 2's user confirmation came back negative. (Bash only — PowerShell support is not yet implemented.)68 - You must only ever run this script once per feature69 - The JSON is provided in the terminal as output - always refer to it to get the actual content you're looking for70 - The JSON output will contain BRANCH_NAME and SPEC_FILE paths (e.g. `2026-05-07-user-auth`). When `--no-branch` was passed, `BRANCH_NAME` is the *would-be* name — the spec folder under `docs/docs/specs/` is named after it, but the user's checked-out branch is unchanged.71 - 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")72734. Load `templates/spec-template.md` to understand required sections.74755. Follow this execution flow:7677 1. Parse user description from Input78 If empty: ERROR "No feature description provided"79 2. Extract key concepts from description80 Identify: actors, actions, data, constraints81 3. For unclear aspects:82 - Make informed guesses based on context and industry standards83 - Only mark with [NEEDS CLARIFICATION: specific question] if:84 - The choice significantly impacts feature scope or user experience85 - Multiple reasonable interpretations exist with different implications86 - No reasonable default exists87 - **LIMIT: Maximum 3 [NEEDS CLARIFICATION] markers total**88 - Prioritize clarifications by impact: scope > security/privacy > user experience > technical details89 4. Fill User Scenarios & Testing section90 If no clear user flow: ERROR "Cannot determine user scenarios"91 5. Generate Functional Requirements92 Each requirement must be testable93 Use reasonable defaults for unspecified details (document assumptions in Assumptions section)94 6. Define Success Criteria95 Create measurable, technology-agnostic outcomes96 Include both quantitative metrics (time, performance, volume) and qualitative measures (user satisfaction, task completion)97 Each criterion must be verifiable without implementation details98 7. Identify Key Entities (if data involved)99 8. Return: SUCCESS (spec ready for planning)1001016. Write the specification to SPEC_FILE using the template structure, replacing placeholders with concrete details derived from the feature description (arguments) while preserving section order and headings.1021037. **Specification Quality Validation**: After writing the initial spec, validate it against quality criteria:104105 a. **Create Spec Quality Checklist**: Generate a checklist file at `FEATURE_DIR/checklists/requirements.md` using the checklist template structure with these validation items:106107 ```markdown108 # Specification Quality Checklist: [FEATURE NAME]109 110 **Purpose**: Validate specification completeness and quality before proceeding to planning111 **Created**: [DATE]112 **Feature**: [Link to spec.md]113 114 ## Content Quality115 116 - [ ] No implementation details (languages, frameworks, APIs)117 - [ ] Focused on user value and business needs118 - [ ] Written for non-technical stakeholders119 - [ ] All mandatory sections completed120 121 ## Requirement Completeness122 123 - [ ] No [NEEDS CLARIFICATION] markers remain124 - [ ] Requirements are testable and unambiguous125 - [ ] Success criteria are measurable126 - [ ] Success criteria are technology-agnostic (no implementation details)127 - [ ] All acceptance scenarios are defined128 - [ ] Edge cases are identified129 - [ ] Scope is clearly bounded130 - [ ] Dependencies and assumptions identified131 132 ## Feature Readiness133 134 - [ ] All functional requirements have clear acceptance criteria135 - [ ] User scenarios cover primary flows136 - [ ] Feature meets measurable outcomes defined in Success Criteria137 - [ ] No implementation details leak into specification138 139 ## Notes140 141 - Items marked incomplete require spec updates before `/speckit.clarify` or `/speckit.plan`142 ```143144 b. **Run Validation Check**: Review the spec against each checklist item:145 - For each item, determine if it passes or fails146 - Document specific issues found (quote relevant spec sections)147148 c. **Handle Validation Results**:149150 - **If all items pass**: Mark checklist complete and proceed to step 7151152 - **If items fail (excluding [NEEDS CLARIFICATION])**:153 1. List the failing items and specific issues154 2. Update the spec to address each issue155 3. Re-run validation until all items pass (max 3 iterations)156 4. If still failing after 3 iterations, document remaining issues in checklist notes and warn user157158 - **If [NEEDS CLARIFICATION] markers remain**:159 1. Extract all [NEEDS CLARIFICATION: ...] markers from the spec160 2. **LIMIT CHECK**: If more than 3 markers exist, keep only the 3 most critical (by scope/security/UX impact) and make informed guesses for the rest161 3. For each clarification needed (max 3), present options to user in this format:162163 ```markdown164 ## Question [N]: [Topic]165 166 **Context**: [Quote relevant spec section]167 168 **What we need to know**: [Specific question from NEEDS CLARIFICATION marker]169 170 **Suggested Answers**:171 172 | Option | Answer | Implications |173 |--------|--------|--------------|174 | A | [First suggested answer] | [What this means for the feature] |175 | B | [Second suggested answer] | [What this means for the feature] |176 | C | [Third suggested answer] | [What this means for the feature] |177 | Custom | Provide your own answer | [Explain how to provide custom input] |178 179 **Your choice**: _[Wait for user response]_180 ```181182 4. **CRITICAL - Table Formatting**: Ensure markdown tables are properly formatted:183 - Use consistent spacing with pipes aligned184 - Each cell should have spaces around content: `| Content |` not `|Content|`185 - Header separator must have at least 3 dashes: `|--------|`186 - Test that the table renders correctly in markdown preview187 5. Number questions sequentially (Q1, Q2, Q3 - max 3 total)188 6. Present all questions together before waiting for responses189 7. Wait for user to respond with their choices for all questions (e.g., "Q1: A, Q2: Custom - [details], Q3: B")190 8. Update the spec by replacing each [NEEDS CLARIFICATION] marker with the user's selected or provided answer191 9. Re-run validation after all clarifications are resolved192193 d. **Update Checklist**: After each validation iteration, update the checklist file with current pass/fail status1941958. Report completion with branch name, spec file path, checklist results, and readiness for the next phase (`/speckit.clarify` or `/speckit.plan`). If the user declined a new branch in step 2, explicitly note which branch the spec lives on (e.g. `"Spec written to docs/docs/specs/2026-05-25-foo/spec.md on branch 'main' (no new branch created, per your instruction)."`).196197**NOTE:** Unless `--no-branch` was passed in step 3, the script creates and checks out the new branch and initializes the spec file before writing. With `--no-branch`, only the spec folder is created and the caller's current branch is preserved.198199## Quick Guidelines200201- Focus on **WHAT** users need and **WHY**.202- Avoid HOW to implement (no tech stack, APIs, code structure).203- Written for business stakeholders, not developers.204- DO NOT create any checklists that are embedded in the spec. That will be a separate command.205206### Section Requirements207208- **Mandatory sections**: Must be completed for every feature209- **Optional sections**: Include only when relevant to the feature210- When a section doesn't apply, remove it entirely (don't leave as "N/A")211212### For AI Generation213214When creating this spec from a user prompt:2152161. **Make informed guesses**: Use context, industry standards, and common patterns to fill gaps2172. **Document assumptions**: Record reasonable defaults in the Assumptions section2183. **Limit clarifications**: Maximum 3 [NEEDS CLARIFICATION] markers - use only for critical decisions that:219 - Significantly impact feature scope or user experience220 - Have multiple reasonable interpretations with different implications221 - Lack any reasonable default2224. **Prioritize clarifications**: scope > security/privacy > user experience > technical details2235. **Think like a tester**: Every vague requirement should fail the "testable and unambiguous" checklist item2246. **Common areas needing clarification** (only if no reasonable default exists):225 - Feature scope and boundaries (include/exclude specific use cases)226 - User types and permissions (if multiple conflicting interpretations possible)227 - Security/compliance requirements (when legally/financially significant)228229**Examples of reasonable defaults** (don't ask about these):230231- Data retention: Industry-standard practices for the domain232- Performance targets: Standard web/mobile app expectations unless specified233- Error handling: User-friendly messages with appropriate fallbacks234- Authentication method: Standard session-based or OAuth2 for web apps235- Integration patterns: Use project-appropriate patterns (REST/GraphQL for web services, function calls for libraries, CLI args for tools, etc.)236237### Success Criteria Guidelines238239Success criteria must be:2402411. **Measurable**: Include specific metrics (time, percentage, count, rate)2422. **Technology-agnostic**: No mention of frameworks, languages, databases, or tools2433. **User-focused**: Describe outcomes from user/business perspective, not system internals2444. **Verifiable**: Can be tested/validated without knowing implementation details245246**Good examples**:247248- "Users can complete checkout in under 3 minutes"249- "System supports 10,000 concurrent users"250- "95% of searches return results in under 1 second"251- "Task completion rate improves by 40%"252253**Bad examples** (implementation-focused):254255- "API response time is under 200ms" (too technical, use "Users see results instantly")256- "Database can handle 1000 TPS" (implementation detail, use user-facing metric)257- "React components render efficiently" (framework-specific)258- "Redis cache hit rate above 80%" (technology-specific)