| name | spec-kitty-specify |
| description | Create or update the feature specification from a natural language feature |
/spec-kitty.specify - Create Feature Specification
Version: 0.11.0+
📍 WORKING DIRECTORY: Stay in planning repository
IMPORTANT: Specify works in the planning repository. NO worktrees are created.
cd /path/to/project/root
Worktrees are created later during /spec-kitty.implement, not during planning.
User Input
$ARGUMENTS
You MUST consider the user input before proceeding (if not empty).
Discovery Gate (mandatory)
Before running any scripts or writing to disk you must conduct a structured discovery interview.
-
Scope proportionality (CRITICAL): FIRST, gauge the inherent complexity of the request:
- Trivial/Test Features (hello world, simple pages, proof-of-concept): Ask 1-2 questions maximum, then proceed. Examples: "a simple hello world page", "tic-tac-toe game", "basic contact form"
- Simple Features (small UI additions, minor enhancements): Ask 2-3 questions covering purpose and basic constraints
- Complex Features (new subsystems, integrations): Ask 3-5 questions covering goals, users, constraints, risks
- Platform/Critical Features (authentication, payments, infrastructure): Full discovery with 5+ questions
-
User signals to reduce questioning: If the user says "just testing", "quick prototype", "skip to next phase", "stop asking questions" - recognize this as a signal to minimize discovery and proceed with reasonable defaults.
-
First response rule:
- For TRIVIAL features (hello world, simple test): Ask ONE clarifying question, then if the answer confirms it's simple, proceed directly to spec generation
- For other features: Ask a single focused discovery question and end with
WAITING_FOR_DISCOVERY_INPUT
-
If the user provides no initial description (empty command), stay in Interactive Interview Mode: keep probing with one question at a time.
-
Conversational cadence: After each user reply, decide if you have ENOUGH context for this feature's complexity level. For trivial features, 1-2 questions is sufficient. Only continue asking if truly necessary for the scope.
Discovery requirements (scale to feature complexity):
- Maintain a Discovery Questions table internally covering questions appropriate to the feature's complexity (1-2 for trivial, up to 5+ for complex). Track columns
#, Question, Why it matters, and Current insight. Do not render this table to the user.
- For trivial features, reasonable defaults are acceptable. Only probe if truly ambiguous.
- When you have sufficient context for the feature's scope, paraphrase into an Intent Summary and confirm. For trivial features, this can be very brief.
- If user explicitly asks to skip questions or says "just testing", acknowledge and proceed with minimal discovery.
Mission Selection
After completing discovery and confirming the Intent Summary, determine the appropriate mission for this feature.
Available Missions
-
software-dev: For building software features, APIs, CLI tools, applications
- Phases: research → design → implement → test → review
- Best for: code changes, new features, bug fixes, refactoring
-
research: For investigations, literature reviews, technical analysis
- Phases: question → methodology → gather → analyze → synthesize → publish
- Best for: feasibility studies, market research, technology evaluation
Mission Inference
-
Analyze the feature description to identify the primary goal:
- Building, coding, implementing, creating software → software-dev
- Researching, investigating, analyzing, evaluating → research
-
Check for explicit mission requests in the user's description:
- If user mentions "research project", "investigation", "analysis" → use research
- If user mentions "build", "implement", "create feature" → use software-dev
-
Confirm with user (unless explicit):
"Based on your description, this sounds like a [software-dev/research] project.
I'll use the [mission name] mission. Does that work for you?"
-
Handle user response:
- If confirmed: proceed with selected mission
- If user wants different mission: use their choice
-
Handle --mission flag: If the user provides --mission <key> in their command, skip inference and use the specified mission directly.
Store the final mission selection in your notes and include it in the spec output. Do not pass a --mission flag to feature creation.
Workflow (0.11.0+)
Planning happens in the planning repository - NO worktree created!
- Creates
kitty-specs/###-feature/spec.md directly in planning repo
- Automatically commits to target branch
- No worktree created during specify
Worktrees created later: Use spec-kitty implement WP## to create a workspace for each work package. Worktrees are created later during implement (e.g., .worktrees/###-feature-WP##).
Location
- Work in: Planning repository (not a worktree)
- Creates:
kitty-specs/###-feature/spec.md
- Commits to: target branch (from
create-feature --json → target_branch)
Outline
0. Generate a Friendly Feature Title
- Summarize the agreed intent into a short, descriptive title (aim for ≤7 words; avoid filler like "feature" or "thing").
- Read that title back during the Intent Summary and revise it if the user requests changes.
- Use the confirmed title to derive the kebab-case feature slug for the create-feature command.
The text the user typed after /spec-kitty.specify in the triggering message is the initial feature description. Capture it verbatim, but treat it only as a starting point for discovery—not the final truth. Your job is to interrogate the request, surface gaps, and co-create a complete specification with the user.
Given that feature description, do this:
- Generation Mode (arguments provided): Use the provided text as a starting point, validate it through discovery, and fill gaps with explicit questions or clearly documented assumptions (limit
[NEEDS CLARIFICATION: …] to at most three critical decisions the user has postponed).
- Interactive Interview Mode (no arguments): Use the discovery interview to elicit all necessary context, synthesize the working feature description, and confirm it with the user before you generate any specification artifacts.
-
Check discovery status:
- If this is your first message or discovery questions remain unanswered, stay in the one-question loop, capture the user's response, update your internal table, and end with
WAITING_FOR_DISCOVERY_INPUT. Do not surface the table; keep it internal. Do not call the creation command yet.
- Only proceed once every discovery question has an explicit answer and the user has acknowledged the Intent Summary.
- Empty invocation rule: stay in interview mode until you can restate the agreed-upon feature description. Do not call the creation command while the description is missing or provisional.
-
When discovery is complete and the intent summary, title, and mission are confirmed, run the feature creation command from repo root:
spec-kitty agent feature create-feature "<slug>" --json
Where <slug> is a kebab-case version of the friendly title (e.g., "Checkout Upsell Flow" → "checkout-upsell-flow").
The command returns JSON with:
result: "success" or error message
feature: Feature number and slug (e.g., "014-checkout-upsell-flow")
feature_dir: Absolute path to the feature directory inside the main repo
target_branch / base_branch: deterministic branch contract for downstream commands
Parse these values for use in subsequent steps. All file paths are absolute.
IMPORTANT: You must only ever run this command once. The JSON is provided in the terminal output - always refer to it to get the actual paths you're looking for.
-
Stay in the main repository: No worktree is created during specify.
-
Read the files created by create-feature:
<feature_dir>/spec.md (already created, may be empty/template-filled)
<feature_dir>/meta.json (already created with feature identity metadata)
The software-dev spec template is bundled at .kittify/missions/software-dev/templates/spec-template.md.
-
Update <feature_dir>/meta.json only when needed:
- Keep identity fields from unchanged (, , , , ).
NOTE: The script creates and checks out the new branch and initializes the spec file before writing.
General Guidelines
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: RESTful APIs unless specified otherwise
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)