Checklist Purpose: "Unit Tests for English"
CRITICAL CONCEPT: Checklists are UNIT TESTS FOR REQUIREMENTS WRITING - they validate the quality, clarity, and completeness of requirements in a given domain.
NOT for verification/testing:
- ❌ NOT "Verify the button clicks correctly"
- ❌ NOT "Test error handling works"
- ❌ NOT "Confirm the API returns 200"
- ❌ NOT checking if code/implementation matches the spec
FOR requirements quality validation:
- ✅ "Are visual hierarchy requirements defined for all card types?" (completeness)
- ✅ "Is 'prominent display' quantified with specific sizing/positioning?" (clarity)
- ✅ "Are hover state requirements consistent across all interactive elements?" (consistency)
- ✅ "Are accessibility requirements defined for keyboard navigation?" (coverage)
- ✅ "Does the spec define what happens when logo image fails to load?" (edge cases)
Metaphor: If your spec is code written in English, the checklist is its unit test suite. You're testing whether the requirements are well-written, complete, unambiguous, and ready for implementation - NOT whether the implementation works.
User Input
$ARGUMENTS
You MUST consider the user input before proceeding (if not empty).
Pre-Execution Checks
Check for extension hooks (before checklist generation):
- Check if
.specify/extensions.yml exists in the project root.
- If it exists, read it and look for entries under the
hooks.before_checklist 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 Execution Steps.
- If no hooks are registered or
.specify/extensions.yml does not exist, skip silently
Execution Steps
Setup: Run .specify/scripts/powershell/check-prerequisites.ps1 -Json from repo root and parse JSON for FEATURE_DIR and AVAILABLE_DOCS list.
- All file paths must be absolute.
- 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").
Clarify intent (dynamic): Derive up to THREE initial contextual clarifying questions (no pre-baked catalog). They MUST:
- Be generated from the user's phrasing + extracted signals from spec/plan/tasks
- Only ask about information that materially changes checklist content
- Be skipped individually if already unambiguous in
$ARGUMENTS
- Prefer precision over breadth
Generation algorithm:
- Extract signals: feature domain keywords (e.g., auth, latency, UX, API), risk indicators ("critical", "must", "compliance"), stakeholder hints ("QA", "review", "security team"), and explicit deliverables ("a11y", "rollback", "contracts").
- Cluster signals into candidate focus areas (max 4) ranked by relevance.
- Identify probable audience & timing (author, reviewer, QA, release) if not explicit.
- Detect missing dimensions: scope breadth, depth/rigor, risk emphasis, exclusion boundaries, measurable acceptance criteria.
- Formulate questions chosen from these archetypes:
- Scope refinement (e.g., "Should this include integration touchpoints with X and Y or stay limited to local module correctness?")
- Risk prioritization (e.g., "Which of these potential risk areas should receive mandatory gating checks?")
- Depth calibration (e.g., "Is this a lightweight pre-commit sanity list or a formal release gate?")
- Audience framing (e.g., "Will this be used by the author only or peers during PR review?")
- Boundary exclusion (e.g., "Should we explicitly exclude performance tuning items this round?")
- Scenario class gap (e.g., "No recovery flows detected—are rollback / partial failure paths in scope?")
Question formatting rules:
- If presenting options, generate a compact table with columns: Option | Candidate | Why It Matters
- Limit to A–E options maximum; omit table if a free-form answer is clearer
- Never ask the user to restate what they already said
- Avoid speculative categories (no hallucination). If uncertain, ask explicitly: "Confirm whether X belongs in scope."
Defaults when interaction impossible:
- Depth: Standard
- Audience: Reviewer (PR) if code-related; Author otherwise
- Focus: Top 2 relevance clusters
Output the questions (label Q1/Q2/Q3). After answers: if ≥2 scenario classes (Alternate / Exception / Recovery / Non-Functional domain) remain unclear, you MAY ask up to TWO more targeted follow‑ups (Q4/Q5) with a one-line justification each (e.g., "Unresolved recovery path risk"). Do not exceed five total questions. Skip escalation if user explicitly declines more.
Understand user request: Combine $ARGUMENTS + clarifying answers:
- Derive checklist theme (e.g., security, review, deploy, ux)
- Consolidate explicit must-have items mentioned by user
- Map focus selections to category scaffolding
- Infer any missing context from spec/plan/tasks (do NOT hallucinate)
Load feature context: Read from FEATURE_DIR:
- spec.md: Feature requirements and scope
- plan.md (if exists): Technical details, dependencies
- tasks.md (if exists): Implementation tasks
Context Loading Strategy:
- Load only necessary portions relevant to active focus areas (avoid full-file dumping)
- Prefer summarizing long sections into concise scenario/requirement bullets
- Use progressive disclosure: add follow-on retrieval only if gaps detected
- If source docs are large, generate interim summary items instead of embedding raw text
Generate checklist - Create "Unit Tests for Requirements":
- Create
FEATURE_DIR/checklists/ directory if it doesn't exist
- Generate unique checklist filename:
- Use short, descriptive name based on domain (e.g.,
ux.md, api.md, security.md)
- Format:
[domain].md
- File handling behavior:
- If file does NOT exist: Create new file and number items starting from CHK001
- If file exists: Append new items to existing file, continuing from the last CHK ID (e.g., if last item is CHK015, start new items at CHK016)
- Never delete or replace existing checklist content - always preserve and append
CORE PRINCIPLE - Test the Requirements, Not the Implementation:
Every checklist item MUST evaluate the REQUIREMENTS THEMSELVES for:
- Completeness: Are all necessary requirements present?
- Clarity: Are requirements unambiguous and specific?
- Consistency: Do requirements align with each other?
- Measurability: Can requirements be objectively verified?
- Coverage: Are all scenarios/edge cases addressed?
Category Structure - Group items by requirement quality dimensions:
- Requirement Completeness (Are all necessary requirements documented?)
- Requirement Clarity (Are requirements specific and unambiguous?)
- Requirement Consistency (Do requirements align without conflicts?)
- Acceptance Criteria Quality (Are success criteria measurable?)
- Scenario Coverage (Are all flows/cases addressed?)
- Edge Case Coverage (Are boundary conditions defined?)
- Non-Functional Requirements (Performance, Security, Accessibility, etc. - are they specified?)
- Dependencies & Assumptions (Are they documented and validated?)
- Ambiguities & Conflicts (What needs clarification?)
HOW TO WRITE CHECKLIST ITEMS - "Unit Tests for English":
❌ WRONG (Testing implementation):
- "Verify landing page displays 3 episode cards"
- "Test hover states work on desktop"
- "Confirm logo click navigates home"
✅ CORRECT (Testing requirements quality):
- "Are the exact number and layout of featured episodes specified?" [Completeness]
- "Is 'prominent display' quantified with specific sizing/positioning?" [Clarity]
- "Are hover state requirements consistent across all interactive elements?" [Consistency]
- "Are keyboard navigation requirements defined for all interactive UI?" [Coverage]
- "Is the fallback behavior specified when logo image fails to load?" [Edge Cases]
- "Are loading states defined for asynchronous episode data?" [Completeness]
- "Does the spec define visual hierarchy for competing UI elements?" [Clarity]
ITEM STRUCTURE:
Each item should follow this pattern:
- Question format asking about requirement quality
- Focus on what's WRITTEN (or not written) in the spec/plan
- Include quality dimension in brackets [Completeness/Clarity/Consistency/etc.]
- Reference spec section
[Spec §X.Y] when checking existing requirements
- Use
[Gap] marker when checking for missing requirements
EXAMPLES BY QUALITY DIMENSION:
Completeness:
- "Are error handling requirements defined for all API failure modes? [Gap]"
- "Are accessibility requirements specified for all interactive elements? [Completeness]"
- "Are mobile breakpoint requirements defined for responsive layouts? [Gap]"
Clarity:
- "Is 'fast loading' quantified with specific timing thresholds? [Clarity, Spec §NFR-2]"
- "Are 'related episodes' selection criteria explicitly defined? [Clarity, Spec §FR-5]"
- "Is 'prominent' defined with measurable visual properties? [Ambiguity, Spec §FR-4]"
Consistency:
- "Do navigation requirements align across all pages? [Consistency, Spec §FR-10]"
- "Are card component requirements consistent between landing and detail pages? [Consistency]"
Coverage:
- "Are requirements defined for zero-state scenarios (no episodes)? [Coverage, Edge Case]"
- "Are concurrent user interaction scenarios addressed? [Coverage, Gap]"
- "Are requirements specified for partial data loading failures? [Coverage, Exception Flow]"
Measurability:
- "Are visual hierarchy requirements measurable/testable? [Acceptance Criteria, Spec §FR-1]"
- "Can 'balanced visual weight' be objectively verified? [Measurability, Spec §FR-2]"
Scenario Classification & Coverage (Requirements Quality Focus):
- Check if requirements exist for: Primary, Alternate, Exception/Error, Recovery, Non-Functional scenarios
- For each scenario class, ask: "Are [scenario type] requirements complete, clear, and consistent?"
- If scenario class missing: "Are [scenario type] requirements intentionally excluded or missing? [Gap]"
- Include resilience/rollback when state mutation occurs: "Are rollback requirements defined for migration failures? [Gap]"
Traceability Requirements:
- MINIMUM: ≥80% of items MUST include at least one traceability reference
- Each item should reference: spec section
[Spec §X.Y], or use markers: [Gap], [Ambiguity], [Conflict], [Assumption]
- If no ID system exists: "Is a requirement & acceptance criteria ID scheme established? [Traceability]"
Surface & Resolve Issues (Requirements Quality Problems):
Ask questions about the requirements themselves:
- Ambiguities: "Is the term 'fast' quantified with specific metrics? [Ambiguity, Spec §NFR-1]"
- Conflicts: "Do navigation requirements conflict between §FR-10 and §FR-10a? [Conflict]"
- Assumptions: "Is the assumption of 'always available podcast API' validated? [Assumption]"
- Dependencies: "Are external podcast API requirements documented? [Dependency, Gap]"
- Missing definitions: "Is 'visual hierarchy' defined with measurable criteria? [Gap]"
Content Consolidation:
- Soft cap: If raw candidate items > 40, prioritize by risk/impact
- Merge near-duplicates checking the same requirement aspect
- If >5 low-impact edge cases, create one item: "Are edge cases X, Y, Z addressed in requirements? [Coverage]"
🚫 ABSOLUTELY PROHIBITED - These make it an implementation test, not a requirements test:
- ❌ Any item starting with "Verify", "Test", "Confirm", "Check" + implementation behavior
- ❌ References to code execution, user actions, system behavior
- ❌ "Displays correctly", "works properly", "functions as expected"
- ❌ "Click", "navigate", "render", "load", "execute"
- ❌ Test cases, test plans, QA procedures
- ❌ Implementation details (frameworks, APIs, algorithms)
✅ REQUIRED PATTERNS - These test requirements quality:
- ✅ "Are [requirement type] defined/specified/documented for [scenario]?"
- ✅ "Is [vague term] quantified/clarified with specific criteria?"
- ✅ "Are requirements consistent between [section A] and [section B]?"
- ✅ "Can [requirement] be objectively measured/verified?"
- ✅ "Are [edge cases/scenarios] addressed in requirements?"
- ✅ "Does the spec define [missing aspect]?"
Structure Reference: Generate the checklist following the canonical template in .specify/templates/checklist-template.md for title, meta section, category headings, and ID formatting. If template is unavailable, use: H1 title, purpose/created meta lines, ## category sections containing - [ ] CHK### <requirement item> lines with globally incrementing IDs starting at CHK001.
Report: Output full path to checklist file, item count, and summarize whether the run created a new file or appended to an existing one. Summarize:
- Focus areas selected
- Depth level
- Actor/timing
- Any explicit user-specified must-have items incorporated
Important: Each /speckit.checklist command invocation uses a short, descriptive checklist filename and either creates a new file or appends to an existing one. This allows:
- Multiple checklists of different types (e.g.,
ux.md, test.md, security.md)
- Simple, memorable filenames that indicate checklist purpose
- Easy identification and navigation in the
checklists/ folder
To avoid clutter, use descriptive types and clean up obsolete checklists when done.
Example Checklist Types & Sample Items
UX Requirements Quality: ux.md
Sample items (testing the requirements, NOT the implementation):
- "Are visual hierarchy requirements defined with measurable criteria? [Clarity, Spec §FR-1]"
- "Is the number and positioning of UI elements explicitly specified? [Completeness, Spec §FR-1]"
- "Are interaction state requirements (hover, focus, active) consistently defined? [Consistency]"
- "Are accessibility requirements specified for all interactive elements? [Coverage, Gap]"
- "Is fallback behavior defined when images fail to load? [Edge Case, Gap]"
- "Can 'prominent display' be objectively measured? [Measurability, Spec §FR-4]"
API Requirements Quality: api.md
Sample items:
- "Are error response formats specified for all failure scenarios? [Completeness]"
- "Are rate limiting requirements quantified with specific thresholds? [Clarity]"
- "Are authentication requirements consistent across all endpoints? [Consistency]"
- "Are retry/timeout requirements defined for external dependencies? [Coverage, Gap]"
- "Is versioning strategy documented in requirements? [Gap]"
Performance Requirements Quality: performance.md
Sample items:
- "Are performance requirements quantified with specific metrics? [Clarity]"
- "Are performance targets defined for all critical user journeys? [Coverage]"
- "Are performance requirements under different load conditions specified? [Completeness]"
- "Can performance requirements be objectively measured? [Measurability]"
- "Are degradation requirements defined for high-load scenarios? [Edge Case, Gap]"
Security Requirements Quality: security.md
Sample items:
- "Are authentication requirements specified for all protected resources? [Coverage]"
- "Are data protection requirements defined for sensitive information? [Completeness]"
- "Is the threat model documented and requirements aligned to it? [Traceability]"
- "Are security requirements consistent with compliance obligations? [Consistency]"
- "Are security failure/breach response requirements defined? [Gap, Exception Flow]"
Anti-Examples: What NOT To Do
❌ WRONG - These test implementation, not requirements:
- [ ] CHK001 - Verify landing page displays 3 episode cards [Spec §FR-001]
- [ ] CHK002 - Test hover states work correctly on desktop [Spec §FR-003]
- [ ] CHK003 - Confirm logo click navigates to home page [Spec §FR-010]
- [ ] CHK004 - Check that related episodes section shows 3-5 items [Spec §FR-005]
✅ CORRECT - These test requirements quality:
- [ ] CHK001 - Are the number and layout of featured episodes explicitly specified? [Completeness, Spec §FR-001]
- [ ] CHK002 - Are hover state requirements consistently defined for all interactive elements? [Consistency, Spec §FR-003]
- [ ] CHK003 - Are navigation requirements clear for all clickable brand elements? [Clarity, Spec §FR-010]
- [ ] CHK004 - Is the selection criteria for related episodes documented? [Gap, Spec §FR-005]
- [ ] CHK005 - Are loading state requirements defined for asynchronous episode data? [Gap]
- [ ] CHK006 - Can "visual hierarchy" requirements be objectively measured? [Measurability, Spec §FR-001]
Key Differences:
- Wrong: Tests if the system works correctly
- Correct: Tests if the requirements are written correctly
- Wrong: Verification of behavior
- Correct: Validation of requirement quality
- Wrong: "Does it do X?"
- Correct: "Is X clearly specified?"
Post-Execution Checks
Check for extension hooks (after checklist generation):
Check if .specify/extensions.yml exists in the project root.
- If it exists, read it and look for entries under the
hooks.after_checklist 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 Hook**: {extension}
Command: `/{command}`
Description: {description}
Prompt: {prompt}
To execute: `/{command}`
- Mandatory hook (
optional: false):## Extension Hooks
**Automatic Hook**: {extension}
Executing: `/{command}`
EXECUTE_COMMAND: {command}
- If no hooks are registered or
.specify/extensions.yml does not exist, skip silently
1---2name: speckit-checklist3description: Generate a custom checklist for the current feature based on user requirements.4---5
6
7## Checklist Purpose: "Unit Tests for English"
8
9**CRITICAL CONCEPT**: Checklists are **UNIT TESTS FOR REQUIREMENTS WRITING** - they validate the quality, clarity, and completeness of requirements in a given domain.
10
11**NOT for verification/testing**:
12
13- ❌ NOT "Verify the button clicks correctly"
14- ❌ NOT "Test error handling works"
15- ❌ NOT "Confirm the API returns 200"
16- ❌ NOT checking if code/implementation matches the spec
17
18**FOR requirements quality validation**:
19
20- ✅ "Are visual hierarchy requirements defined for all card types?" (completeness)
21- ✅ "Is 'prominent display' quantified with specific sizing/positioning?" (clarity)
22- ✅ "Are hover state requirements consistent across all interactive elements?" (consistency)
23- ✅ "Are accessibility requirements defined for keyboard navigation?" (coverage)
24- ✅ "Does the spec define what happens when logo image fails to load?" (edge cases)
25
26**Metaphor**: If your spec is code written in English, the checklist is its unit test suite. You're testing whether the requirements are well-written, complete, unambiguous, and ready for implementation - NOT whether the implementation works.
27
28## User Input
29
30```text
31$ARGUMENTS
32```
33
34You **MUST** consider the user input before proceeding (if not empty).
35
36## Pre-Execution Checks
37
38**Check for extension hooks (before checklist generation)**:
39- Check if `.specify/extensions.yml` exists in the project root.
40- If it exists, read it and look for entries under the `hooks.before_checklist` key
41- If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally
42- Filter out hooks where `enabled` is explicitly `false`. Treat hooks without an `enabled` field as enabled by default.
43- For each remaining hook, do **not** attempt to interpret or evaluate hook `condition` expressions:
44 - If the hook has no `condition` field, or it is null/empty, treat the hook as executable
45 - If the hook defines a non-empty `condition`, skip the hook and leave condition evaluation to the HookExecutor implementation
46- When constructing slash commands from hook command names, replace dots (`.`) with hyphens (`-`). For example, `speckit.git.commit` → `/speckit-git-commit`.
47- For each executable hook, output the following based on its `optional` flag:
48 - **Optional hook** (`optional: true`):
49 ```
50 ## Extension Hooks
51
52 **Optional Pre-Hook**: {extension}
53 Command: `/{command}`
54 Description: {description}
55
56 Prompt: {prompt}
57 To execute: `/{command}`
58 ```
59 - **Mandatory hook** (`optional: false`):
60 ```
61 ## Extension Hooks
62
63 **Automatic Pre-Hook**: {extension}
64 Executing: `/{command}`
65 EXECUTE_COMMAND: {command}
66
67 Wait for the result of the hook command before proceeding to the Execution Steps.
68 ```
69- If no hooks are registered or `.specify/extensions.yml` does not exist, skip silently
70
71## Execution Steps
72
731. **Setup**: Run `.specify/scripts/powershell/check-prerequisites.ps1 -Json` from repo root and parse JSON for FEATURE_DIR and AVAILABLE_DOCS list.
74 - All file paths must be absolute.
75 - 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").
76
772. **Clarify intent (dynamic)**: Derive up to THREE initial contextual clarifying questions (no pre-baked catalog). They MUST:
78 - Be generated from the user's phrasing + extracted signals from spec/plan/tasks
79 - Only ask about information that materially changes checklist content
80 - Be skipped individually if already unambiguous in `$ARGUMENTS`
81 - Prefer precision over breadth
82
83 Generation algorithm:
84 1. Extract signals: feature domain keywords (e.g., auth, latency, UX, API), risk indicators ("critical", "must", "compliance"), stakeholder hints ("QA", "review", "security team"), and explicit deliverables ("a11y", "rollback", "contracts").
85 2. Cluster signals into candidate focus areas (max 4) ranked by relevance.
86 3. Identify probable audience & timing (author, reviewer, QA, release) if not explicit.
87 4. Detect missing dimensions: scope breadth, depth/rigor, risk emphasis, exclusion boundaries, measurable acceptance criteria.
88 5. Formulate questions chosen from these archetypes:
89 - Scope refinement (e.g., "Should this include integration touchpoints with X and Y or stay limited to local module correctness?")
90 - Risk prioritization (e.g., "Which of these potential risk areas should receive mandatory gating checks?")
91 - Depth calibration (e.g., "Is this a lightweight pre-commit sanity list or a formal release gate?")
92 - Audience framing (e.g., "Will this be used by the author only or peers during PR review?")
93 - Boundary exclusion (e.g., "Should we explicitly exclude performance tuning items this round?")
94 - Scenario class gap (e.g., "No recovery flows detected—are rollback / partial failure paths in scope?")
95
96 Question formatting rules:
97 - If presenting options, generate a compact table with columns: Option | Candidate | Why It Matters
98 - Limit to A–E options maximum; omit table if a free-form answer is clearer
99 - Never ask the user to restate what they already said
100 - Avoid speculative categories (no hallucination). If uncertain, ask explicitly: "Confirm whether X belongs in scope."
101
102 Defaults when interaction impossible:
103 - Depth: Standard
104 - Audience: Reviewer (PR) if code-related; Author otherwise
105 - Focus: Top 2 relevance clusters
106
107 Output the questions (label Q1/Q2/Q3). After answers: if ≥2 scenario classes (Alternate / Exception / Recovery / Non-Functional domain) remain unclear, you MAY ask up to TWO more targeted follow‑ups (Q4/Q5) with a one-line justification each (e.g., "Unresolved recovery path risk"). Do not exceed five total questions. Skip escalation if user explicitly declines more.
108
1093. **Understand user request**: Combine `$ARGUMENTS` + clarifying answers:
110 - Derive checklist theme (e.g., security, review, deploy, ux)
111 - Consolidate explicit must-have items mentioned by user
112 - Map focus selections to category scaffolding
113 - Infer any missing context from spec/plan/tasks (do NOT hallucinate)
114
1154. **Load feature context**: Read from FEATURE_DIR:
116 - spec.md: Feature requirements and scope
117 - plan.md (if exists): Technical details, dependencies
118 - tasks.md (if exists): Implementation tasks
119
120 **Context Loading Strategy**:
121 - Load only necessary portions relevant to active focus areas (avoid full-file dumping)
122 - Prefer summarizing long sections into concise scenario/requirement bullets
123 - Use progressive disclosure: add follow-on retrieval only if gaps detected
124 - If source docs are large, generate interim summary items instead of embedding raw text
125
1265. **Generate checklist** - Create "Unit Tests for Requirements":
127 - Create `FEATURE_DIR/checklists/` directory if it doesn't exist
128 - Generate unique checklist filename:
129 - Use short, descriptive name based on domain (e.g., `ux.md`, `api.md`, `security.md`)
130 - Format: `[domain].md`
131 - File handling behavior:
132 - If file does NOT exist: Create new file and number items starting from CHK001
133 - If file exists: Append new items to existing file, continuing from the last CHK ID (e.g., if last item is CHK015, start new items at CHK016)
134 - Never delete or replace existing checklist content - always preserve and append
135
136 **CORE PRINCIPLE - Test the Requirements, Not the Implementation**:
137 Every checklist item MUST evaluate the REQUIREMENTS THEMSELVES for:
138 - **Completeness**: Are all necessary requirements present?
139 - **Clarity**: Are requirements unambiguous and specific?
140 - **Consistency**: Do requirements align with each other?
141 - **Measurability**: Can requirements be objectively verified?
142 - **Coverage**: Are all scenarios/edge cases addressed?
143
144 **Category Structure** - Group items by requirement quality dimensions:
145 - **Requirement Completeness** (Are all necessary requirements documented?)
146 - **Requirement Clarity** (Are requirements specific and unambiguous?)
147 - **Requirement Consistency** (Do requirements align without conflicts?)
148 - **Acceptance Criteria Quality** (Are success criteria measurable?)
149 - **Scenario Coverage** (Are all flows/cases addressed?)
150 - **Edge Case Coverage** (Are boundary conditions defined?)
151 - **Non-Functional Requirements** (Performance, Security, Accessibility, etc. - are they specified?)
152 - **Dependencies & Assumptions** (Are they documented and validated?)
153 - **Ambiguities & Conflicts** (What needs clarification?)
154
155 **HOW TO WRITE CHECKLIST ITEMS - "Unit Tests for English"**:
156
157 ❌ **WRONG** (Testing implementation):
158 - "Verify landing page displays 3 episode cards"
159 - "Test hover states work on desktop"
160 - "Confirm logo click navigates home"
161
162 ✅ **CORRECT** (Testing requirements quality):
163 - "Are the exact number and layout of featured episodes specified?" [Completeness]
164 - "Is 'prominent display' quantified with specific sizing/positioning?" [Clarity]
165 - "Are hover state requirements consistent across all interactive elements?" [Consistency]
166 - "Are keyboard navigation requirements defined for all interactive UI?" [Coverage]
167 - "Is the fallback behavior specified when logo image fails to load?" [Edge Cases]
168 - "Are loading states defined for asynchronous episode data?" [Completeness]
169 - "Does the spec define visual hierarchy for competing UI elements?" [Clarity]
170
171 **ITEM STRUCTURE**:
172 Each item should follow this pattern:
173 - Question format asking about requirement quality
174 - Focus on what's WRITTEN (or not written) in the spec/plan
175 - Include quality dimension in brackets [Completeness/Clarity/Consistency/etc.]
176 - Reference spec section `[Spec §X.Y]` when checking existing requirements
177 - Use `[Gap]` marker when checking for missing requirements
178
179 **EXAMPLES BY QUALITY DIMENSION**:
180
181 Completeness:
182 - "Are error handling requirements defined for all API failure modes? [Gap]"
183 - "Are accessibility requirements specified for all interactive elements? [Completeness]"
184 - "Are mobile breakpoint requirements defined for responsive layouts? [Gap]"
185
186 Clarity:
187 - "Is 'fast loading' quantified with specific timing thresholds? [Clarity, Spec §NFR-2]"
188 - "Are 'related episodes' selection criteria explicitly defined? [Clarity, Spec §FR-5]"
189 - "Is 'prominent' defined with measurable visual properties? [Ambiguity, Spec §FR-4]"
190
191 Consistency:
192 - "Do navigation requirements align across all pages? [Consistency, Spec §FR-10]"
193 - "Are card component requirements consistent between landing and detail pages? [Consistency]"
194
195 Coverage:
196 - "Are requirements defined for zero-state scenarios (no episodes)? [Coverage, Edge Case]"
197 - "Are concurrent user interaction scenarios addressed? [Coverage, Gap]"
198 - "Are requirements specified for partial data loading failures? [Coverage, Exception Flow]"
199
200 Measurability:
201 - "Are visual hierarchy requirements measurable/testable? [Acceptance Criteria, Spec §FR-1]"
202 - "Can 'balanced visual weight' be objectively verified? [Measurability, Spec §FR-2]"
203
204 **Scenario Classification & Coverage** (Requirements Quality Focus):
205 - Check if requirements exist for: Primary, Alternate, Exception/Error, Recovery, Non-Functional scenarios
206 - For each scenario class, ask: "Are [scenario type] requirements complete, clear, and consistent?"
207 - If scenario class missing: "Are [scenario type] requirements intentionally excluded or missing? [Gap]"
208 - Include resilience/rollback when state mutation occurs: "Are rollback requirements defined for migration failures? [Gap]"
209
210 **Traceability Requirements**:
211 - MINIMUM: ≥80% of items MUST include at least one traceability reference
212 - Each item should reference: spec section `[Spec §X.Y]`, or use markers: `[Gap]`, `[Ambiguity]`, `[Conflict]`, `[Assumption]`
213 - If no ID system exists: "Is a requirement & acceptance criteria ID scheme established? [Traceability]"
214
215 **Surface & Resolve Issues** (Requirements Quality Problems):
216 Ask questions about the requirements themselves:
217 - Ambiguities: "Is the term 'fast' quantified with specific metrics? [Ambiguity, Spec §NFR-1]"
218 - Conflicts: "Do navigation requirements conflict between §FR-10 and §FR-10a? [Conflict]"
219 - Assumptions: "Is the assumption of 'always available podcast API' validated? [Assumption]"
220 - Dependencies: "Are external podcast API requirements documented? [Dependency, Gap]"
221 - Missing definitions: "Is 'visual hierarchy' defined with measurable criteria? [Gap]"
222
223 **Content Consolidation**:
224 - Soft cap: If raw candidate items > 40, prioritize by risk/impact
225 - Merge near-duplicates checking the same requirement aspect
226 - If >5 low-impact edge cases, create one item: "Are edge cases X, Y, Z addressed in requirements? [Coverage]"
227
228 **🚫 ABSOLUTELY PROHIBITED** - These make it an implementation test, not a requirements test:
229 - ❌ Any item starting with "Verify", "Test", "Confirm", "Check" + implementation behavior
230 - ❌ References to code execution, user actions, system behavior
231 - ❌ "Displays correctly", "works properly", "functions as expected"
232 - ❌ "Click", "navigate", "render", "load", "execute"
233 - ❌ Test cases, test plans, QA procedures
234 - ❌ Implementation details (frameworks, APIs, algorithms)
235
236 **✅ REQUIRED PATTERNS** - These test requirements quality:
237 - ✅ "Are [requirement type] defined/specified/documented for [scenario]?"
238 - ✅ "Is [vague term] quantified/clarified with specific criteria?"
239 - ✅ "Are requirements consistent between [section A] and [section B]?"
240 - ✅ "Can [requirement] be objectively measured/verified?"
241 - ✅ "Are [edge cases/scenarios] addressed in requirements?"
242 - ✅ "Does the spec define [missing aspect]?"
243
2446. **Structure Reference**: Generate the checklist following the canonical template in `.specify/templates/checklist-template.md` for title, meta section, category headings, and ID formatting. If template is unavailable, use: H1 title, purpose/created meta lines, `##` category sections containing `- [ ] CHK### <requirement item>` lines with globally incrementing IDs starting at CHK001.
245
2467. **Report**: Output full path to checklist file, item count, and summarize whether the run created a new file or appended to an existing one. Summarize:
247 - Focus areas selected
248 - Depth level
249 - Actor/timing
250 - Any explicit user-specified must-have items incorporated
251
252**Important**: Each `/speckit.checklist` command invocation uses a short, descriptive checklist filename and either creates a new file or appends to an existing one. This allows:
253
254- Multiple checklists of different types (e.g., `ux.md`, `test.md`, `security.md`)
255- Simple, memorable filenames that indicate checklist purpose
256- Easy identification and navigation in the `checklists/` folder
257
258To avoid clutter, use descriptive types and clean up obsolete checklists when done.
259
260## Example Checklist Types & Sample Items
261
262**UX Requirements Quality:** `ux.md`
263
264Sample items (testing the requirements, NOT the implementation):
265
266- "Are visual hierarchy requirements defined with measurable criteria? [Clarity, Spec §FR-1]"
267- "Is the number and positioning of UI elements explicitly specified? [Completeness, Spec §FR-1]"
268- "Are interaction state requirements (hover, focus, active) consistently defined? [Consistency]"
269- "Are accessibility requirements specified for all interactive elements? [Coverage, Gap]"
270- "Is fallback behavior defined when images fail to load? [Edge Case, Gap]"
271- "Can 'prominent display' be objectively measured? [Measurability, Spec §FR-4]"
272
273**API Requirements Quality:** `api.md`
274
275Sample items:
276
277- "Are error response formats specified for all failure scenarios? [Completeness]"
278- "Are rate limiting requirements quantified with specific thresholds? [Clarity]"
279- "Are authentication requirements consistent across all endpoints? [Consistency]"
280- "Are retry/timeout requirements defined for external dependencies? [Coverage, Gap]"
281- "Is versioning strategy documented in requirements? [Gap]"
282
283**Performance Requirements Quality:** `performance.md`
284
285Sample items:
286
287- "Are performance requirements quantified with specific metrics? [Clarity]"
288- "Are performance targets defined for all critical user journeys? [Coverage]"
289- "Are performance requirements under different load conditions specified? [Completeness]"
290- "Can performance requirements be objectively measured? [Measurability]"
291- "Are degradation requirements defined for high-load scenarios? [Edge Case, Gap]"
292
293**Security Requirements Quality:** `security.md`
294
295Sample items:
296
297- "Are authentication requirements specified for all protected resources? [Coverage]"
298- "Are data protection requirements defined for sensitive information? [Completeness]"
299- "Is the threat model documented and requirements aligned to it? [Traceability]"
300- "Are security requirements consistent with compliance obligations? [Consistency]"
301- "Are security failure/breach response requirements defined? [Gap, Exception Flow]"
302
303## Anti-Examples: What NOT To Do
304
305**❌ WRONG - These test implementation, not requirements:**
306
307```markdown
308- [ ] CHK001 - Verify landing page displays 3 episode cards [Spec §FR-001]
309- [ ] CHK002 - Test hover states work correctly on desktop [Spec §FR-003]
310- [ ] CHK003 - Confirm logo click navigates to home page [Spec §FR-010]
311- [ ] CHK004 - Check that related episodes section shows 3-5 items [Spec §FR-005]
312```
313
314**✅ CORRECT - These test requirements quality:**
315
316```markdown
317- [ ] CHK001 - Are the number and layout of featured episodes explicitly specified? [Completeness, Spec §FR-001]
318- [ ] CHK002 - Are hover state requirements consistently defined for all interactive elements? [Consistency, Spec §FR-003]
319- [ ] CHK003 - Are navigation requirements clear for all clickable brand elements? [Clarity, Spec §FR-010]
320- [ ] CHK004 - Is the selection criteria for related episodes documented? [Gap, Spec §FR-005]
321- [ ] CHK005 - Are loading state requirements defined for asynchronous episode data? [Gap]
322- [ ] CHK006 - Can "visual hierarchy" requirements be objectively measured? [Measurability, Spec §FR-001]
323```
324
325**Key Differences:**
326
327- Wrong: Tests if the system works correctly
328- Correct: Tests if the requirements are written correctly
329- Wrong: Verification of behavior
330- Correct: Validation of requirement quality
331- Wrong: "Does it do X?"
332- Correct: "Is X clearly specified?"
333
334## Post-Execution Checks
335
336**Check for extension hooks (after checklist generation)**:
337Check if `.specify/extensions.yml` exists in the project root.
338- If it exists, read it and look for entries under the `hooks.after_checklist` key
339- If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally
340- Filter out hooks where `enabled` is explicitly `false`. Treat hooks without an `enabled` field as enabled by default.
341- For each remaining hook, do **not** attempt to interpret or evaluate hook `condition` expressions:
342 - If the hook has no `condition` field, or it is null/empty, treat the hook as executable
343 - If the hook defines a non-empty `condition`, skip the hook and leave condition evaluation to the HookExecutor implementation
344- When constructing slash commands from hook command names, replace dots (`.`) with hyphens (`-`). For example, `speckit.git.commit` → `/speckit-git-commit`.
345- For each executable hook, output the following based on its `optional` flag:
346 - **Optional hook** (`optional: true`):
347 ```
348 ## Extension Hooks
349
350 **Optional Hook**: {extension}
351 Command: `/{command}`
352 Description: {description}
353
354 Prompt: {prompt}
355 To execute: `/{command}`
356 ```
357 - **Mandatory hook** (`optional: false`):
358 ```
359 ## Extension Hooks
360
361 **Automatic Hook**: {extension}
362 Executing: `/{command}`
363 EXECUTE_COMMAND: {command}
364 ```
365- If no hooks are registered or `.specify/extensions.yml` does not exist, skip silently