User Input
$ARGUMENTS
You MUST consider the user input before proceeding (if not empty).
Memory Integration
Before Starting
Search for related prior work:
./scripts/memory-search "{feature keywords}"
Look for: existing patterns, prior decisions, related features. Use findings to inform scope and avoid contradicting prior decisions.
After Completion
Save key requirements captured:
./scripts/memory-save --decisions "Key requirements for {feature}: {summary}" --issues ""
Constitution Alignment
This skill aligns with project principles:
- •User-Focused: Specifications focus on WHAT users need, not HOW to implement
- •Testable Requirements: Every requirement must be verifiable
- •Clear Boundaries: Explicit scope and out-of-scope declarations
Integration Considerations (REQUIRED)
When specifying a feature, you MUST document integration points. This prevents isolated implementations that don't connect to the system.
Add to spec.md under "Scope" section:
- •
Entry Points: How will users access this feature?
- •CLI command? → Which command group?
- •Plugin? → Which plugin type?
- •API? → Which endpoint?
- •
Dependencies: What existing components does this feature need?
- •Which packages? (floe-core, floe-dagster, etc.)
- •Which plugins? (ComputePlugin, CatalogPlugin, etc.)
- •Which services? (Polaris, S3, etc.)
- •
Outputs: What does this feature produce that others consume?
- •New schemas? → Add to CompiledArtifacts
- •New plugins? → Register entry points
- •New APIs? → Document contracts
If integration is unclear: Ask during /speckit.clarify before planning begins.
Example integration section in spec.md:
### Integration Points **Entry Point**: `floe validate` CLI command (floe-cli package) **Dependencies**: - floe-core: CompiledArtifacts, ValidationError - floe-dbt: DbtManifest for SQL validation **Produces**: - ValidationResult schema (new, added to floe-core) - Used by: floe-dagster pre-run checks
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 $ARGUMENTS appears literally below. Do not ask the user to repeat it unless they provided an empty command.
Given that feature description, do this:
- •
Query Agent-Memory for Related Context (if available):
- •Search for prior work related to this feature domain:
bash
./scripts/memory-search "{feature keywords}" - •Look for: existing patterns, prior decisions, related features
- •Use findings to inform scope and avoid contradicting prior decisions
- •If agent-memory unavailable, continue without (non-blocking)
- •Search for prior work related to this feature domain:
- •
Identify the Epic this feature belongs to:
All features MUST be associated with an Epic from the project's Epic Overview.
How to find the Epic ID:
- •Read
docs/plans/EPIC-OVERVIEW.mdto see the full list of Epics and their IDs - •Epic IDs follow the pattern: number + optional letter (e.g., 1, 2A, 2B, 3A, 9C)
- •Match the feature description to an Epic name/purpose in that document
How to determine the Epic:
- •If the user explicitly mentions an Epic (e.g., "for Epic 2A" or "part of the Manifest Schema epic"), use that
- •If unclear from the feature description, use the AskUserQuestion tool to ask which Epic this belongs to
- •Provide suggested options based on the Epic names in EPIC-OVERVIEW.md
- •Read
- •
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., "manifest-validation", "plugin-discovery")
- •Preserve technical terms and acronyms (OAuth2, API, JWT, etc.)
- •Keep it concise but descriptive enough to understand the feature at a glance
- •
Check for existing specs for this Epic:
a. First, fetch all remote branches to ensure we have the latest information:
bashgit fetch --all --prune
b. Check if specs already exist for this Epic:
- •Remote branches:
git ls-remote --heads origin | grep -iE 'refs/heads/<epic-id>-'(e.g.,2a-,9c-) - •Local branches:
git branch | grep -iE '^[* ]*<epic-id>-' - •Specs directories: Check for directories matching
specs/<epic-id>-*
c. Determine if this is a new feature or continuation:
- •If an existing spec matches this Epic + short-name, warn the user and ask if they want to continue work on it
- •If no existing spec, proceed with creating a new one
d. Run the script
.specify/scripts/bash/create-new-feature.sh --json "$ARGUMENTS"with the Epic ID and short-name:- •Pass
--epic <epic-id>and--short-name "your-short-name"along with the feature description - •Bash example:
.specify/scripts/bash/create-new-feature.sh --json --epic 2a --short-name "manifest-validation" "Implement manifest schema validation" - •The Epic ID should be lowercase (e.g.,
2anot2A,9cnot9C)
IMPORTANT:
- •Every feature MUST have a valid Epic ID (check
docs/plans/EPIC-OVERVIEW.md) - •Use lowercase for Epic IDs in branch names (2a, 9c, not 2A, 9C)
- •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, SPEC_FILE paths, and EPIC_ID
- •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")
- •Remote branches:
- •
Load
.specify/templates/spec-template.mdto 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:
- •Clarify by using the AskUserQuestions Tool
- •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.mdusing the checklist template structure with validation itemsb. 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 8
- •
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
- •Wait for user to respond with their choices for all questions
- •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, Epic ID, and readiness for the next phase (
/speckit.clarifyor/speckit.plan).
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:
- •Don't guess: Use the AskUserQuestions tool to validate reasoning
- •Document assumptions: Record reasonable defaults in the Assumptions section
- •Limit clarifications: Maximum 3 [NEEDS CLARIFICATION] markers - use only for critical decisions
- •Prioritize clarifications: scope > security/privacy > user experience > technical details
- •Think like a tester: Every vague requirement should fail the "testable and unambiguous" checklist item
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
Handoff
After completing this skill:
- •Clarify requirements: Run
/speckit.clarifyto resolve ambiguities - •Create plan: Run
/speckit.planto generate technical implementation plan
References
- •
.specify/templates/spec-template.md- Specification template - •
docs/plans/EPIC-OVERVIEW.md- Epic definitions - •
.specify/memory/constitution.md- Project principles