@lbruton/specflow 3.4.0 → 3.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (115) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.ar.md +6 -6
  3. package/README.de.md +6 -6
  4. package/README.es.md +6 -6
  5. package/README.fr.md +6 -6
  6. package/README.it.md +6 -6
  7. package/README.ja.md +6 -6
  8. package/README.ko.md +6 -6
  9. package/README.md +2 -2
  10. package/README.pt.md +6 -6
  11. package/README.ru.md +6 -6
  12. package/README.zh.md +6 -6
  13. package/dist/__tests__/config.test.js +2 -2
  14. package/dist/__tests__/config.test.js.map +1 -1
  15. package/dist/config.js +1 -1
  16. package/dist/config.js.map +1 -1
  17. package/dist/core/__tests__/config-loader.test.d.ts +2 -0
  18. package/dist/core/__tests__/config-loader.test.d.ts.map +1 -0
  19. package/dist/core/__tests__/config-loader.test.js +184 -0
  20. package/dist/core/__tests__/config-loader.test.js.map +1 -0
  21. package/dist/core/__tests__/convention-detector.test.js +2 -2
  22. package/dist/core/__tests__/convention-detector.test.js.map +1 -1
  23. package/dist/core/__tests__/index-updater.test.d.ts +2 -0
  24. package/dist/core/__tests__/index-updater.test.d.ts.map +1 -0
  25. package/dist/core/__tests__/index-updater.test.js +122 -0
  26. package/dist/core/__tests__/index-updater.test.js.map +1 -0
  27. package/dist/core/__tests__/migration.test.d.ts +2 -0
  28. package/dist/core/__tests__/migration.test.d.ts.map +1 -0
  29. package/dist/core/__tests__/migration.test.js +151 -0
  30. package/dist/core/__tests__/migration.test.js.map +1 -0
  31. package/dist/core/__tests__/path-utils.test.js +120 -0
  32. package/dist/core/__tests__/path-utils.test.js.map +1 -1
  33. package/dist/core/__tests__/security-utils.test.js +2 -2
  34. package/dist/core/__tests__/security-utils.test.js.map +1 -1
  35. package/dist/core/__tests__/template-generator.test.js +4 -4
  36. package/dist/core/__tests__/template-generator.test.js.map +1 -1
  37. package/dist/core/archive-service.d.ts.map +1 -1
  38. package/dist/core/archive-service.js +22 -0
  39. package/dist/core/archive-service.js.map +1 -1
  40. package/dist/core/config-loader.d.ts +31 -0
  41. package/dist/core/config-loader.d.ts.map +1 -0
  42. package/dist/core/config-loader.js +162 -0
  43. package/dist/core/config-loader.js.map +1 -0
  44. package/dist/core/convention-detector.d.ts +2 -2
  45. package/dist/core/convention-detector.js +3 -3
  46. package/dist/core/convention-detector.js.map +1 -1
  47. package/dist/core/dashboard-session.d.ts +1 -1
  48. package/dist/core/dashboard-session.js +1 -1
  49. package/dist/core/global-dir.d.ts +4 -4
  50. package/dist/core/global-dir.js +8 -8
  51. package/dist/core/global-dir.js.map +1 -1
  52. package/dist/core/index-updater.d.ts +17 -0
  53. package/dist/core/index-updater.d.ts.map +1 -0
  54. package/dist/core/index-updater.js +86 -0
  55. package/dist/core/index-updater.js.map +1 -0
  56. package/dist/core/migration.d.ts +30 -0
  57. package/dist/core/migration.d.ts.map +1 -0
  58. package/dist/core/migration.js +99 -0
  59. package/dist/core/migration.js.map +1 -0
  60. package/dist/core/path-utils.d.ts +7 -0
  61. package/dist/core/path-utils.d.ts.map +1 -1
  62. package/dist/core/path-utils.js +31 -10
  63. package/dist/core/path-utils.js.map +1 -1
  64. package/dist/core/security-utils.js +1 -1
  65. package/dist/core/security-utils.js.map +1 -1
  66. package/dist/core/template-generator.d.ts +2 -2
  67. package/dist/core/template-generator.d.ts.map +1 -1
  68. package/dist/core/template-generator.js +35 -14
  69. package/dist/core/template-generator.js.map +1 -1
  70. package/dist/core/workspace-initializer.d.ts +6 -1
  71. package/dist/core/workspace-initializer.d.ts.map +1 -1
  72. package/dist/core/workspace-initializer.js +69 -9
  73. package/dist/core/workspace-initializer.js.map +1 -1
  74. package/dist/dashboard/__tests__/approval-storage-path-resolution.test.js +2 -2
  75. package/dist/dashboard/__tests__/approval-storage-path-resolution.test.js.map +1 -1
  76. package/dist/dashboard/__tests__/multi-server-approvals-content.test.js +3 -3
  77. package/dist/dashboard/__tests__/multi-server-approvals-content.test.js.map +1 -1
  78. package/dist/dashboard/__tests__/watcher-error-handling.test.js +5 -5
  79. package/dist/dashboard/__tests__/watcher-error-handling.test.js.map +1 -1
  80. package/dist/dashboard/approval-storage.js +2 -2
  81. package/dist/dashboard/approval-storage.js.map +1 -1
  82. package/dist/dashboard/job-scheduler.js +2 -2
  83. package/dist/dashboard/job-scheduler.js.map +1 -1
  84. package/dist/dashboard/multi-server.js +15 -15
  85. package/dist/dashboard/multi-server.js.map +1 -1
  86. package/dist/dashboard/watcher.js +2 -2
  87. package/dist/dashboard/watcher.js.map +1 -1
  88. package/dist/index.js +3 -3
  89. package/dist/index.js.map +1 -1
  90. package/dist/prompts/create-spec.js +4 -4
  91. package/dist/prompts/create-spec.js.map +1 -1
  92. package/dist/prompts/create-steering-doc.js +5 -5
  93. package/dist/prompts/create-steering-doc.js.map +1 -1
  94. package/dist/prompts/implement-task.js +11 -11
  95. package/dist/prompts/implement-task.js.map +1 -1
  96. package/dist/prompts/inject-steering-guide.js +2 -2
  97. package/dist/prompts/spec-status.js +2 -2
  98. package/dist/prompts/spec-status.js.map +1 -1
  99. package/dist/server.d.ts.map +1 -1
  100. package/dist/server.js +16 -3
  101. package/dist/server.js.map +1 -1
  102. package/dist/tools/__tests__/projectPath.test.js +2 -2
  103. package/dist/tools/__tests__/projectPath.test.js.map +1 -1
  104. package/dist/tools/approvals.d.ts.map +1 -1
  105. package/dist/tools/approvals.js +17 -3
  106. package/dist/tools/approvals.js.map +1 -1
  107. package/dist/tools/log-implementation.js +2 -2
  108. package/dist/tools/log-implementation.js.map +1 -1
  109. package/dist/tools/spec-list.js +1 -1
  110. package/dist/tools/spec-list.js.map +1 -1
  111. package/dist/tools/spec-status.js +11 -11
  112. package/dist/tools/spec-status.js.map +1 -1
  113. package/dist/tools/spec-workflow-guide.js +41 -41
  114. package/dist/tools/steering-guide.js +24 -24
  115. package/package.json +1 -1
@@ -1 +1 @@
1
- {"version":3,"file":"log-implementation.js","sourceRoot":"","sources":["../../src/tools/log-implementation.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"log-implementation.js","sourceRoot":"","sources":["../../src/tools/log-implementation.ts"],"names":[],"mappings":"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"}
@@ -136,7 +136,7 @@ export async function specListHandler(args, context) {
136
136
  message: `Failed to list specifications: ${errorMessage}`,
137
137
  nextSteps: [
138
138
  'Verify the project path is correct',
139
- 'Check if .spec-workflow/specs/ directory exists'
139
+ 'Check if .specflow/specs/ directory exists'
140
140
  ]
141
141
  };
142
142
  }
@@ -1 +1 @@
1
- {"version":3,"file":"spec-list.js","sourceRoot":"","sources":["../../src/tools/spec-list.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"spec-list.js","sourceRoot":"","sources":["../../src/tools/spec-list.ts"],"names":[],"mappings":"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"}
@@ -88,7 +88,7 @@ export async function specStatusHandler(args, context) {
88
88
  let conventions = null;
89
89
  try {
90
90
  const { promises: fsPromises } = await import('fs');
91
- const convPath = `${translatedPath}/.spec-workflow/project-conventions.json`;
91
+ const convPath = `${translatedPath}/.specflow/project-conventions.json`;
92
92
  const convContent = await fsPromises.readFile(convPath, 'utf-8');
93
93
  conventions = JSON.parse(convContent);
94
94
  }
@@ -151,36 +151,36 @@ export async function specStatusHandler(args, context) {
151
151
  const nextSteps = [];
152
152
  switch (currentPhase) {
153
153
  case 'requirements':
154
- nextSteps.push('Read template: .spec-workflow/templates/requirements-template-v*.md');
155
- nextSteps.push('Create: .spec-workflow/specs/{name}/requirements.md');
154
+ nextSteps.push('Read template: .specflow/templates/requirements-template-v*.md');
155
+ nextSteps.push('Create: .specflow/specs/{name}/requirements.md');
156
156
  nextSteps.push('Request approval');
157
157
  break;
158
158
  case 'design':
159
- nextSteps.push('Read template: .spec-workflow/templates/design-template-v*.md');
160
- nextSteps.push('Create: .spec-workflow/specs/{name}/design.md');
159
+ nextSteps.push('Read template: .specflow/templates/design-template-v*.md');
160
+ nextSteps.push('Create: .specflow/specs/{name}/design.md');
161
161
  nextSteps.push('Request approval');
162
162
  break;
163
163
  case 'tasks':
164
- nextSteps.push('Read template: .spec-workflow/templates/tasks-template-v*.md');
165
- nextSteps.push('Create: .spec-workflow/specs/{name}/tasks.md');
164
+ nextSteps.push('Read template: .specflow/templates/tasks-template-v*.md');
165
+ nextSteps.push('Create: .specflow/specs/{name}/tasks.md');
166
166
  nextSteps.push('Request approval');
167
167
  break;
168
168
  case 'readiness-gate':
169
169
  nextSteps.push('Phase 3.9: Implementation Readiness Gate required before implementation');
170
170
  nextSteps.push('Cross-validate requirements.md + design.md + tasks.md for consistency');
171
- nextSteps.push(`Create: .spec-workflow/specs/${specName}/readiness-report.md`);
171
+ nextSteps.push(`Create: .specflow/specs/${specName}/readiness-report.md`);
172
172
  nextSteps.push('Submit readiness-report.md for dashboard approval (NOT tasks.md)');
173
173
  nextSteps.push('Dashboard options: Approve (PASS), Concerns (proceed with risks), Reject (fix and re-run)');
174
174
  break;
175
175
  case 'implementation':
176
176
  if (spec.taskProgress && spec.taskProgress.pending > 0) {
177
- nextSteps.push(`Read tasks: .spec-workflow/specs/${specName}/tasks.md`);
177
+ nextSteps.push(`Read tasks: .specflow/specs/${specName}/tasks.md`);
178
178
  nextSteps.push('Edit tasks.md: Change [ ] to [-] for task you start');
179
179
  nextSteps.push('Implement the task code');
180
180
  nextSteps.push('Edit tasks.md: Change [-] to [x] when completed');
181
181
  }
182
182
  else {
183
- nextSteps.push(`Read tasks: .spec-workflow/specs/${specName}/tasks.md`);
183
+ nextSteps.push(`Read tasks: .specflow/specs/${specName}/tasks.md`);
184
184
  nextSteps.push('Begin implementation by marking first task [-]');
185
185
  }
186
186
  break;
@@ -257,7 +257,7 @@ export async function specStatusHandler(args, context) {
257
257
  nextSteps: [
258
258
  'Check if the specification exists',
259
259
  'Verify the project path',
260
- 'List directory .spec-workflow/specs/ to see available specifications'
260
+ 'List directory .specflow/specs/ to see available specifications'
261
261
  ]
262
262
  };
263
263
  }
@@ -1 +1 @@
1
- {"version":3,"file":"spec-status.js","sourceRoot":"","sources":["../../src/tools/spec-status.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"spec-status.js","sourceRoot":"","sources":["../../src/tools/spec-status.ts"],"names":[],"mappings":"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"}
@@ -49,13 +49,13 @@ Spec names MUST use issue prefix: {ISSUE-ID}-{kebab-title} (e.g., STAK-123-user-
49
49
  \`\`\`mermaid
50
50
  flowchart TD
51
51
  Start([Start: User requests feature]) --> CheckSteering{Steering docs exist?}
52
- CheckSteering -->|Yes| P1_Load[Read steering docs:<br/>.spec-workflow/steering/*.md]
52
+ CheckSteering -->|Yes| P1_Load[Read steering docs:<br/>.specflow/steering/*.md]
53
53
  CheckSteering -->|No| P1_Template
54
54
 
55
55
  %% Phase 1: Requirements
56
56
  P1_Load --> P1_Template[Check user-templates first,<br/>then read template:<br/>requirements-template.md]
57
57
  P1_Template --> P1_Research[Web search if available]
58
- P1_Research --> P1_Create[Create file:<br/>.spec-workflow/specs/{name}/<br/>requirements.md]
58
+ P1_Research --> P1_Create[Create file:<br/>.specflow/specs/{name}/<br/>requirements.md]
59
59
  P1_Create --> P1_Approve[approvals<br/>action: request<br/>filePath only]
60
60
  P1_Approve --> P1_Status[approvals<br/>action: status<br/>poll status]
61
61
  P1_Status --> P1_Check{Status?}
@@ -67,7 +67,7 @@ flowchart TD
67
67
  %% Phase 2: Design
68
68
  P1_Clean -->|success| P2_Template[Check user-templates first,<br/>then read template:<br/>design-template.md]
69
69
  P2_Template --> P2_Analyze[Analyze codebase patterns]
70
- P2_Analyze --> P2_Create[Create file:<br/>.spec-workflow/specs/{name}/<br/>design.md]
70
+ P2_Analyze --> P2_Create[Create file:<br/>.specflow/specs/{name}/<br/>design.md]
71
71
  P2_Create --> P2_Approve[approvals<br/>action: request<br/>filePath only]
72
72
  P2_Approve --> P2_Status[approvals<br/>action: status<br/>poll status]
73
73
  P2_Status --> P2_Check{Status?}
@@ -79,7 +79,7 @@ flowchart TD
79
79
  %% Phase 3: Tasks
80
80
  P2_Clean -->|success| P3_Template[Check user-templates first,<br/>then read template:<br/>tasks-template.md]
81
81
  P3_Template --> P3_Break[Convert design to tasks]
82
- P3_Break --> P3_Create[Create file:<br/>.spec-workflow/specs/{name}/<br/>tasks.md]
82
+ P3_Break --> P3_Create[Create file:<br/>.specflow/specs/{name}/<br/>tasks.md]
83
83
  P3_Create --> P3_Approve[approvals<br/>action: request<br/>filePath only]
84
84
  P3_Approve --> P3_Status[approvals<br/>action: status<br/>poll status]
85
85
  P3_Status --> P3_Check{Status?}
@@ -171,20 +171,20 @@ flowchart TD
171
171
  **Purpose**: Define what to build based on user needs.
172
172
 
173
173
  **File Operations**:
174
- - Read steering docs: \`.spec-workflow/steering/*.md\` (if they exist)
175
- - Check for custom template: \`.spec-workflow/user-templates/requirements-template.md\`
176
- - Read template: \`.spec-workflow/templates/requirements-template.md\` (if no custom template)
177
- - Create document: \`.spec-workflow/specs/{issue-id}-{kebab-title}/requirements.md\`
174
+ - Read steering docs: \`.specflow/steering/*.md\` (if they exist)
175
+ - Check for custom template: \`.specflow/user-templates/requirements-template.md\`
176
+ - Read template: \`.specflow/templates/requirements-template.md\` (if no custom template)
177
+ - Create document: \`.specflow/specs/{issue-id}-{kebab-title}/requirements.md\`
178
178
 
179
179
  **Tools**:
180
180
  - approvals: Manage approval workflow (actions: request, status, delete)
181
181
 
182
182
  **Process**:
183
- 1. Check if \`.spec-workflow/steering/\` exists (if yes, read product.md, tech.md, structure.md)
184
- 2. Check for custom template at \`.spec-workflow/user-templates/requirements-template.md\`
185
- 3. If no custom template, read from \`.spec-workflow/templates/requirements-template.md\`
183
+ 1. Check if \`.specflow/steering/\` exists (if yes, read product.md, tech.md, structure.md)
184
+ 2. Check for custom template at \`.specflow/user-templates/requirements-template.md\`
185
+ 3. If no custom template, read from \`.specflow/templates/requirements-template.md\`
186
186
  4. Research market/user expectations (if web search available, current year: ${currentYear})
187
- 5. Generate requirements as user stories with EARS criteria6. Create \`requirements.md\` at \`.spec-workflow/specs/{issue-id}-{kebab-title}/requirements.md\`
187
+ 5. Generate requirements as user stories with EARS criteria6. Create \`requirements.md\` at \`.specflow/specs/{issue-id}-{kebab-title}/requirements.md\`
188
188
  7. Request approval using approvals tool with action:'request' (filePath only, never content)
189
189
  8. Poll status using approvals with action:'status' until approved/needs-revision (NEVER accept verbal approval)
190
190
  9. If needs-revision: update document using comments, create NEW approval, do NOT proceed
@@ -195,19 +195,19 @@ flowchart TD
195
195
  **Purpose**: Create technical design addressing all requirements.
196
196
 
197
197
  **File Operations**:
198
- - Check for custom template: \`.spec-workflow/user-templates/design-template.md\`
199
- - Read template: \`.spec-workflow/templates/design-template.md\` (if no custom template)
200
- - Create document: \`.spec-workflow/specs/{issue-id}-{kebab-title}/design.md\`
198
+ - Check for custom template: \`.specflow/user-templates/design-template.md\`
199
+ - Read template: \`.specflow/templates/design-template.md\` (if no custom template)
200
+ - Create document: \`.specflow/specs/{issue-id}-{kebab-title}/design.md\`
201
201
 
202
202
  **Tools**:
203
203
  - approvals: Manage approval workflow (actions: request, status, delete)
204
204
 
205
205
  **Process**:
206
- 1. Check for custom template at \`.spec-workflow/user-templates/design-template.md\`
207
- 2. If no custom template, read from \`.spec-workflow/templates/design-template.md\`
206
+ 1. Check for custom template at \`.specflow/user-templates/design-template.md\`
207
+ 2. If no custom template, read from \`.specflow/templates/design-template.md\`
208
208
  3. Analyze codebase for patterns to reuse
209
209
  4. Research technology choices (if web search available, current year: ${currentYear})
210
- 5. Generate design with all template sections6. Create \`design.md\` at \`.spec-workflow/specs/{issue-id}-{kebab-title}/design.md\`
210
+ 5. Generate design with all template sections6. Create \`design.md\` at \`.specflow/specs/{issue-id}-{kebab-title}/design.md\`
211
211
  7. Request approval using approvals tool with action:'request'
212
212
  8. Poll status using approvals with action:'status' until approved/needs-revision
213
213
  9. If needs-revision: update document using comments, create NEW approval, do NOT proceed
@@ -218,16 +218,16 @@ flowchart TD
218
218
  **Purpose**: Break design into atomic implementation tasks.
219
219
 
220
220
  **File Operations**:
221
- - Check for custom template: \`.spec-workflow/user-templates/tasks-template.md\`
222
- - Read template: \`.spec-workflow/templates/tasks-template.md\` (if no custom template)
223
- - Create document: \`.spec-workflow/specs/{issue-id}-{kebab-title}/tasks.md\`
221
+ - Check for custom template: \`.specflow/user-templates/tasks-template.md\`
222
+ - Read template: \`.specflow/templates/tasks-template.md\` (if no custom template)
223
+ - Create document: \`.specflow/specs/{issue-id}-{kebab-title}/tasks.md\`
224
224
 
225
225
  **Tools**:
226
226
  - approvals: Manage approval workflow (actions: request, status, delete)
227
227
 
228
228
  **Process**:
229
- 1. Check for custom template at \`.spec-workflow/user-templates/tasks-template.md\`
230
- 2. If no custom template, read from \`.spec-workflow/templates/tasks-template.md\`
229
+ 1. Check for custom template at \`.specflow/user-templates/tasks-template.md\`
230
+ 2. If no custom template, read from \`.specflow/templates/tasks-template.md\`
231
231
  3. Convert design into atomic tasks (1-3 files each)
232
232
  4. Include file paths and requirement references
233
233
  5. **IMPORTANT**: Generate a _Prompt field for each task with:
@@ -241,7 +241,7 @@ flowchart TD
241
241
  - Start the prompt with "Implement the task for spec {issue-id}-{kebab-title}, first run spec-workflow-guide to get the workflow guide then implement the task:"
242
242
  6. (Optional) Add a **Recommended Agent** field to each task: Claude, Codex, Gemini, or Human
243
243
  7. Include a **File Touch Map** at the top of tasks.md listing all files the spec will CREATE, MODIFY, or TEST with brief scope notes
244
- 8. Create \`tasks.md\` at \`.spec-workflow/specs/{issue-id}-{kebab-title}/tasks.md\`
244
+ 8. Create \`tasks.md\` at \`.specflow/specs/{issue-id}-{kebab-title}/tasks.md\`
245
245
  7. Request approval using approvals tool with action:'request'
246
246
  8. Poll status using approvals with action:'status' until approved/needs-revision
247
247
  9. If needs-revision: update document using comments, create NEW approval, do NOT proceed
@@ -261,7 +261,7 @@ flowchart TD
261
261
  2. If UI changes are declared with prototype required:
262
262
  - Execute tasks 0.1–0.3 from tasks.md (these are the prototype gate tasks)
263
263
  - Task 0.1: Create visual mockup via \`ui-mockup\` skill (Stitch) or \`frontend-design\` skill
264
- - Task 0.2: Build interactive prototype via \`playground\` skill — **save to \`.spec-workflow/specs/{spec-name}/artifacts/playground.html\`**
264
+ - Task 0.2: Build interactive prototype via \`playground\` skill — **save to \`.specflow/specs/{spec-name}/artifacts/playground.html\`**
265
265
  - Task 0.3: Present to user, collect explicit visual approval
266
266
  3. If a reference HTML/mockup file path is listed in design.md, the prototype MUST use it as the baseline — do not ignore provided prototypes
267
267
  4. **Save all visual artifacts** (playground HTML, mockup screenshots, Stitch exports) to the spec's \`artifacts/\` folder
@@ -277,8 +277,8 @@ flowchart TD
277
277
  **Trigger**: This phase fires automatically after Phase 3 approval (and Phase 3.5 if applicable). It runs on EVERY spec — it is not conditional.
278
278
 
279
279
  **File Operations**:
280
- - Read specs: \`.spec-workflow/specs/{issue-id}-{kebab-title}/requirements.md\`, \`design.md\`, \`tasks.md\`
281
- - Create report: \`.spec-workflow/specs/{issue-id}-{kebab-title}/readiness-report.md\`
280
+ - Read specs: \`.specflow/specs/{issue-id}-{kebab-title}/requirements.md\`, \`design.md\`, \`tasks.md\`
281
+ - Create report: \`.specflow/specs/{issue-id}-{kebab-title}/readiness-report.md\`
282
282
 
283
283
  **Tools**:
284
284
  - approvals: Submit readiness report for dashboard review (actions: request, status, delete)
@@ -293,7 +293,7 @@ flowchart TD
293
293
  - **Prototype consistency**: If design.md references a prototype HTML file, verify it appears in task 0.1-0.3 artifacts and/or task \`_Leverage\` fields.
294
294
  - **File touch map validation**: Verify the File Touch Map in tasks.md covers all files mentioned in individual tasks.
295
295
  - **Test Design Coverage**: At least one task in tasks.md covers test authoring for new behavior (matching task title/description patterns: "test", "TDD", "verify", "write tests"). If no test task found → FAIL.
296
- - **Release Hygiene**: Check \`.spec-workflow/project-conventions.json\` (if exists):
296
+ - **Release Hygiene**: Check \`.specflow/project-conventions.json\` (if exists):
297
297
  - If version lock detected: verify a task covers version bump. Missing → FAIL.
298
298
  - If changelog detected: verify a task covers changelog entry. Missing → FAIL.
299
299
  - Verify a task covers DocVault documentation update. Missing → FAIL.
@@ -350,7 +350,7 @@ flowchart TD
350
350
  **Purpose**: Execute tasks systematically.
351
351
 
352
352
  **File Operations**:
353
- - Read specs: \`.spec-workflow/specs/{issue-id}-{kebab-title}/*.md\` (if returning to work)
353
+ - Read specs: \`.specflow/specs/{issue-id}-{kebab-title}/*.md\` (if returning to work)
354
354
  - Edit tasks.md to update status:
355
355
  - \`- [ ]\` = Pending task
356
356
  - \`- [-]\` = In-progress task
@@ -372,17 +372,17 @@ flowchart TD
372
372
  - Read design.md \`UI Impact Assessment\` section
373
373
  - If \`Prototype Required: Yes\`, confirm tasks 0.1–0.3 are marked \`[x]\` and \`Prototype Artifacts\` in design.md are populated
374
374
  - If prototype gate is incomplete, STOP — complete Phase 3.5 first
375
- - **MANDATORY**: Include the playground file path (e.g., \`.spec-workflow/specs/{spec-name}/artifacts/playground.html\`) in the subagent prompt so the implementer has the approved visual reference
375
+ - **MANDATORY**: Include the playground file path (e.g., \`.specflow/specs/{spec-name}/artifacts/playground.html\`) in the subagent prompt so the implementer has the approved visual reference
376
376
  - Tell the implementer explicitly: "Source your visual design from the prototype file. Do NOT re-read earlier spec documents and reinvent the design. The prototype IS the approved design."
377
377
  - The spec compliance reviewer (Stage 1) will compare implementation against the prototype — visual deviations are a FAIL
378
378
  - Edit tasks.md: Change \`[ ]\` to \`[-]\` for the task you're starting
379
379
  - **CRITICAL: BEFORE implementing, search existing implementation logs**:
380
- - Implementation logs are in: \`.spec-workflow/specs/{issue-id}-{kebab-title}/Implementation Logs/\`
380
+ - Implementation logs are in: \`.specflow/specs/{issue-id}-{kebab-title}/Implementation Logs/\`
381
381
  - **Option 1: Use grep for fast searches**:
382
- - \`grep -r "api\|endpoint" .spec-workflow/specs/{issue-id}-{kebab-title}/Implementation Logs/\` - Find API endpoints
383
- - \`grep -r "component" .spec-workflow/specs/{issue-id}-{kebab-title}/Implementation Logs/\` - Find UI components
384
- - \`grep -r "function" .spec-workflow/specs/{issue-id}-{kebab-title}/Implementation Logs/\` - Find utility functions
385
- - \`grep -r "integration" .spec-workflow/specs/{issue-id}-{kebab-title}/Implementation Logs/\` - Find integration patterns
382
+ - \`grep -r "api\|endpoint" .specflow/specs/{issue-id}-{kebab-title}/Implementation Logs/\` - Find API endpoints
383
+ - \`grep -r "component" .specflow/specs/{issue-id}-{kebab-title}/Implementation Logs/\` - Find UI components
384
+ - \`grep -r "function" .specflow/specs/{issue-id}-{kebab-title}/Implementation Logs/\` - Find utility functions
385
+ - \`grep -r "integration" .specflow/specs/{issue-id}-{kebab-title}/Implementation Logs/\` - Find integration patterns
386
386
  - **Option 2: Read markdown files directly** - Use Read tool to examine specific log files
387
387
  - Best practice: Search 2-3 different terms to discover comprehensively
388
388
  - This prevents: duplicate endpoints, reimplemented components, broken integrations
@@ -424,7 +424,7 @@ Never write implementation code in the main context — dispatch a subagent inst
424
424
 
425
425
  **Parallel Session** — If the plan has 10+ tasks, split into session-sized batches. Each session handles ~3-4 batches of 3 tasks. Use a handoff mechanism between sessions to relay context (spec name, completed tasks, next task).
426
426
 
427
- **Implementer template**: See \`.spec-workflow/templates/implementer-prompt-template.md\` for the subagent dispatch template. Paste the full task text into the subagent prompt — don't make the subagent read the plan file.
427
+ **Implementer template**: See \`.specflow/templates/implementer-prompt-template.md\` for the subagent dispatch template. Paste the full task text into the subagent prompt — don't make the subagent read the plan file.
428
428
 
429
429
  #### Two-Stage Review (after each task, BEFORE marking [x])
430
430
 
@@ -436,7 +436,7 @@ Dispatch a reviewer subagent to verify the implementer built what was requested
436
436
  - Check for missing requirements, extra/unneeded work, misunderstandings
437
437
  - ✅ Pass = proceed to Stage 2
438
438
  - ❌ Fail = implementer fixes issues → dispatch reviewer again
439
- - Template: \`.spec-workflow/templates/spec-reviewer-template.md\`
439
+ - Template: \`.specflow/templates/spec-reviewer-template.md\`
440
440
 
441
441
  **Stage 2 — Code Quality Review:**
442
442
  Only dispatch AFTER Stage 1 passes. Verify the code is well-built and production-ready.
@@ -444,7 +444,7 @@ Only dispatch AFTER Stage 1 passes. Verify the code is well-built and production
444
444
  - Categorize issues: Critical (must fix) / Important (should fix) / Minor (nice to have)
445
445
  - ✅ Approved = proceed to log-implementation → mark [x]
446
446
  - Issues found = implementer fixes → dispatch reviewer again
447
- - Template: \`.spec-workflow/templates/code-quality-reviewer-template.md\`
447
+ - Template: \`.specflow/templates/code-quality-reviewer-template.md\`
448
448
 
449
449
  **Review loop:** If either reviewer finds issues, the implementer subagent fixes them, then the reviewer re-reviews. Repeat until approved. Never skip re-review — "it should be fine now" is not verification.
450
450
 
@@ -476,7 +476,7 @@ Phase 5 has three stages. The spec is NOT complete until all three are done.
476
476
  **Purpose**: Run the project's test suite to verify the implementation.
477
477
 
478
478
  **Process**:
479
- 1. Check \`.spec-workflow/project-conventions.json\` for the project's test command and framework.
479
+ 1. Check \`.specflow/project-conventions.json\` for the project's test command and framework.
480
480
  2. If conventions exist and specify a test command: run that command (e.g., \`npm test\`, \`npx vitest\`, \`pytest\`).
481
481
  3. If no conventions exist: check \`package.json\` for a \`test\` script. If found, run \`npm test\`. If not found, ask the user for the test command.
482
482
  4. If the project uses Browserbase/Stagehand (\`conventions.testing.hasBrowserbase\` is true):
@@ -535,7 +535,7 @@ Phase 5 has three stages. The spec is NOT complete until all three are done.
535
535
  ## Workflow Rules
536
536
 
537
537
  - Create documents directly at specified file paths
538
- - Read templates from \`.spec-workflow/templates/\` directory
538
+ - Read templates from \`.specflow/templates/\` directory
539
539
  - Follow exact template structures
540
540
  - Get explicit user approval between phases (using approvals tool with action:'request')
541
541
  - Complete phases in sequence (no skipping)
@@ -560,7 +560,7 @@ Phase 5 has three stages. The spec is NOT complete until all three are done.
560
560
 
561
561
  ## File Structure
562
562
  \`\`\`
563
- .spec-workflow/
563
+ .specflow/
564
564
  ├── templates/ # Auto-populated on server start
565
565
  │ ├── requirements-template.md
566
566
  │ ├── design-template.md
@@ -47,7 +47,7 @@ flowchart TD
47
47
  %% Phase 1: Product
48
48
  Guide --> P1_Template[Check user-templates first,<br/>then read template:<br/>product-template.md]
49
49
  P1_Template --> P1_Generate[Generate vision & goals]
50
- P1_Generate --> P1_Create[Create file:<br/>.spec-workflow/steering/<br/>product.md]
50
+ P1_Generate --> P1_Create[Create file:<br/>.specflow/steering/<br/>product.md]
51
51
  P1_Create --> P1_Approve[approvals<br/>action: request<br/>filePath only]
52
52
  P1_Approve --> P1_Status[approvals<br/>action: status<br/>poll status]
53
53
  P1_Status --> P1_Check{Status?}
@@ -59,7 +59,7 @@ flowchart TD
59
59
  %% Phase 2: Tech
60
60
  P1_Clean -->|success| P2_Template[Check user-templates first,<br/>then read template:<br/>tech-template.md]
61
61
  P2_Template --> P2_Analyze[Analyze tech stack]
62
- P2_Analyze --> P2_Create[Create file:<br/>.spec-workflow/steering/<br/>tech.md]
62
+ P2_Analyze --> P2_Create[Create file:<br/>.specflow/steering/<br/>tech.md]
63
63
  P2_Create --> P2_Approve[approvals<br/>action: request<br/>filePath only]
64
64
  P2_Approve --> P2_Status[approvals<br/>action: status<br/>poll status]
65
65
  P2_Status --> P2_Check{Status?}
@@ -71,7 +71,7 @@ flowchart TD
71
71
  %% Phase 3: Structure
72
72
  P2_Clean -->|success| P3_Template[Check user-templates first,<br/>then read template:<br/>structure-template.md]
73
73
  P3_Template --> P3_Analyze[Analyze codebase structure]
74
- P3_Analyze --> P3_Create[Create file:<br/>.spec-workflow/steering/<br/>structure.md]
74
+ P3_Analyze --> P3_Create[Create file:<br/>.specflow/steering/<br/>structure.md]
75
75
  P3_Create --> P3_Approve[approvals<br/>action: request<br/>filePath only]
76
76
  P3_Approve --> P3_Status[approvals<br/>action: status<br/>poll status]
77
77
  P3_Status --> P3_Check{Status?}
@@ -95,9 +95,9 @@ flowchart TD
95
95
  **Purpose**: Define vision, goals, and user outcomes.
96
96
 
97
97
  **File Operations**:
98
- - Check for custom template: \`.spec-workflow/user-templates/product-template.md\`
99
- - Read template: \`.spec-workflow/templates/product-template.md\` (if no custom template)
100
- - Create document: \`.spec-workflow/steering/product.md\`
98
+ - Check for custom template: \`.specflow/user-templates/product-template.md\`
99
+ - Read template: \`.specflow/templates/product-template.md\` (if no custom template)
100
+ - Create document: \`.specflow/steering/product.md\`
101
101
 
102
102
  **Tools**:
103
103
  - steering-guide: Load workflow instructions
@@ -105,10 +105,10 @@ flowchart TD
105
105
 
106
106
  **Process**:
107
107
  1. Load steering guide for workflow overview
108
- 2. Check for custom template at \`.spec-workflow/user-templates/product-template.md\`
109
- 3. If no custom template, read from \`.spec-workflow/templates/product-template.md\`
108
+ 2. Check for custom template at \`.specflow/user-templates/product-template.md\`
109
+ 3. If no custom template, read from \`.specflow/templates/product-template.md\`
110
110
  4. Generate product vision and goals
111
- 5. Create \`product.md\` at \`.spec-workflow/steering/product.md\`
111
+ 5. Create \`product.md\` at \`.specflow/steering/product.md\`
112
112
  6. Request approval using approvals tool with action:'request' (filePath only)
113
113
  7. Poll status using approvals with action:'status' until approved/needs-revision (NEVER accept verbal approval)
114
114
  8. If needs-revision: update document using comments, create NEW approval, do NOT proceed
@@ -119,19 +119,19 @@ flowchart TD
119
119
  **Purpose**: Document technology decisions and architecture.
120
120
 
121
121
  **File Operations**:
122
- - Check for custom template: \`.spec-workflow/user-templates/tech-template.md\`
123
- - Read template: \`.spec-workflow/templates/tech-template.md\` (if no custom template)
124
- - Create document: \`.spec-workflow/steering/tech.md\`
122
+ - Check for custom template: \`.specflow/user-templates/tech-template.md\`
123
+ - Read template: \`.specflow/templates/tech-template.md\` (if no custom template)
124
+ - Create document: \`.specflow/steering/tech.md\`
125
125
 
126
126
  **Tools**:
127
127
  - approvals: Manage approval workflow (actions: request, status, delete)
128
128
 
129
129
  **Process**:
130
- 1. Check for custom template at \`.spec-workflow/user-templates/tech-template.md\`
131
- 2. If no custom template, read from \`.spec-workflow/templates/tech-template.md\`
130
+ 1. Check for custom template at \`.specflow/user-templates/tech-template.md\`
131
+ 2. If no custom template, read from \`.specflow/templates/tech-template.md\`
132
132
  3. Analyze existing technology stack
133
133
  4. Document architectural decisions and patterns
134
- 5. Create \`tech.md\` at \`.spec-workflow/steering/tech.md\`
134
+ 5. Create \`tech.md\` at \`.specflow/steering/tech.md\`
135
135
  6. Request approval using approvals tool with action:'request'
136
136
  7. Poll status using approvals with action:'status' until approved/needs-revision
137
137
  8. If needs-revision: update document using comments, create NEW approval, do NOT proceed
@@ -142,19 +142,19 @@ flowchart TD
142
142
  **Purpose**: Map codebase organization and patterns.
143
143
 
144
144
  **File Operations**:
145
- - Check for custom template: \`.spec-workflow/user-templates/structure-template.md\`
146
- - Read template: \`.spec-workflow/templates/structure-template.md\` (if no custom template)
147
- - Create document: \`.spec-workflow/steering/structure.md\`
145
+ - Check for custom template: \`.specflow/user-templates/structure-template.md\`
146
+ - Read template: \`.specflow/templates/structure-template.md\` (if no custom template)
147
+ - Create document: \`.specflow/steering/structure.md\`
148
148
 
149
149
  **Tools**:
150
150
  - approvals: Manage approval workflow (actions: request, status, delete)
151
151
 
152
152
  **Process**:
153
- 1. Check for custom template at \`.spec-workflow/user-templates/structure-template.md\`
154
- 2. If no custom template, read from \`.spec-workflow/templates/structure-template.md\`
153
+ 1. Check for custom template at \`.specflow/user-templates/structure-template.md\`
154
+ 2. If no custom template, read from \`.specflow/templates/structure-template.md\`
155
155
  3. Analyze directory structure and file organization
156
156
  4. Document coding patterns and conventions
157
- 5. Create \`structure.md\` at \`.spec-workflow/steering/structure.md\`
157
+ 5. Create \`structure.md\` at \`.specflow/steering/structure.md\`
158
158
  6. Request approval using approvals tool with action:'request'
159
159
  7. Poll status using approvals with action:'status' until approved/needs-revision
160
160
  8. If needs-revision: update document using comments, create NEW approval, do NOT proceed
@@ -165,8 +165,8 @@ flowchart TD
165
165
  ## Workflow Rules
166
166
 
167
167
  - Create documents directly at specified file paths
168
- - Check for custom templates in \`.spec-workflow/user-templates/\` first
169
- - Read templates from \`.spec-workflow/templates/\` directory if no custom template exists
168
+ - Check for custom templates in \`.specflow/user-templates/\` first
169
+ - Read templates from \`.specflow/templates/\` directory if no custom template exists
170
170
  - Follow exact template structures
171
171
  - Get explicit user approval between phases (using approvals tool with action:'request')
172
172
  - Complete phases in sequence (no skipping)
@@ -178,7 +178,7 @@ flowchart TD
178
178
 
179
179
  ## File Structure
180
180
  \`\`\`
181
- .spec-workflow/
181
+ .specflow/
182
182
  ├── templates/ # Auto-populated on server start
183
183
  │ ├── product-template.md
184
184
  │ ├── tech-template.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lbruton/specflow",
3
- "version": "3.4.0",
3
+ "version": "3.5.0",
4
4
  "description": "MCP server for spec-driven development workflow with real-time web dashboard",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",