speccrew 0.5.8 → 0.5.9

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.
@@ -266,6 +266,9 @@ After completing all steps, output a structured completion report for the System
266
266
  | **Explicit Transaction Boundaries** | Transaction boundaries must be explicitly marked |
267
267
  | **Exception Code Mapping** | Exception handling must map to API Contract error codes |
268
268
  | **Follow Techs Conventions** | Naming, directory structure, patterns from techs knowledge |
269
+ | **FORBIDDEN: TODO/FIXME Placeholders** | Design documents MUST contain complete implementation logic. Do NOT use TODO, FIXME, HACK, or any placeholder comments. Every method, validation rule, and business logic MUST be fully specified with actual pseudocode. |
270
+ | **API Route Consistency** | All API routes in the design document MUST exactly match the routes defined in the API Contract document. Before writing any route, READ the API Contract and copy routes verbatim. Do NOT invent or modify routes. |
271
+ | **Cross-Feature Dependency Marking** | When referencing functionality from another Feature (e.g., conflict detection from F-APPT-002), MUST explicitly mark it as `[DEPENDENCY: F-XXX-NNN]` and define a degradation strategy for when that Feature is not yet implemented. |
269
272
 
270
273
  # Mermaid Diagram Requirements
271
274
 
@@ -296,3 +299,6 @@ When generating Mermaid diagrams, follow compatibility guidelines:
296
299
  - [ ] INDEX.md generated with complete module list
297
300
  - [ ] All files written to correct paths under 03.system-design/{platform_id}/
298
301
  - [ ] All Mermaid diagrams follow compatibility guidelines
302
+ - [ ] **No TODO/FIXME placeholders** — all methods have complete pseudocode implementation
303
+ - [ ] **API routes match API Contract exactly** — verified route-by-route
304
+ - [ ] **Cross-Feature dependencies explicitly marked** — all `[DEPENDENCY: F-XXX-NNN]` tags present with degradation strategy
@@ -263,6 +263,10 @@ After completing all steps, output a structured completion report for the System
263
263
  | **One Module Per Function Group** | Each module design document maps to one or more related Feature Spec functions |
264
264
  | **Status Markers Required** | Use [EXISTING], [MODIFIED], [NEW] markers for all components and store modules |
265
265
  | **Follow Techs Conventions** | Naming, directory structure, patterns must follow techs knowledge |
266
+ | **FORBIDDEN: TODO/FIXME Placeholders** | Design documents MUST contain complete implementation logic. Do NOT use TODO, FIXME, HACK, or any placeholder comments. Every component, method, and interaction MUST be fully specified with actual pseudocode. |
267
+ | **API Route Consistency** | All API routes in the design document MUST exactly match the routes defined in the API Contract document. Before writing any route, READ the API Contract and copy routes verbatim. Do NOT invent or modify routes. |
268
+ | **Cross-Feature Dependency Marking** | When referencing functionality from another Feature (e.g., conflict detection from F-APPT-002), MUST explicitly mark it as `[DEPENDENCY: F-XXX-NNN]` and define a degradation strategy (e.g., hide button, show placeholder) for when that Feature is not yet implemented. |
269
+ | **Mermaid for All Diagrams** | ALL component trees, interaction flows, and state management diagrams MUST use Mermaid syntax (`graph TB`, `sequenceDiagram`, `flowchart`). Plain text ASCII diagrams are FORBIDDEN for these sections. |
266
270
 
267
271
  # Checklist
268
272
 
@@ -277,3 +281,7 @@ After completing all steps, output a structured completion report for the System
277
281
  - [ ] INDEX.md generated with complete module list
278
282
  - [ ] All files written to correct paths under 03.system-design/{platform_id}/
279
283
  - [ ] Checkpoint A passed: function extraction confirmed with user
284
+ - [ ] **No TODO/FIXME placeholders** — all components and methods have complete pseudocode
285
+ - [ ] **API routes match API Contract exactly** — verified route-by-route
286
+ - [ ] **Cross-Feature dependencies explicitly marked** — all `[DEPENDENCY: F-XXX-NNN]` tags present with degradation strategy
287
+ - [ ] **Mermaid diagrams used** — no ASCII text diagrams for flows or component trees
@@ -253,6 +253,10 @@ After completing all steps, output a structured completion report for the System
253
253
  | **Follow Techs Conventions** | Naming, directory structure, patterns must follow techs knowledge |
254
254
  | **Platform-Specific Handling** | Properly handle iOS/Android differences, permissions, and native integrations |
255
255
  | **Offline Support** | Consider offline-first patterns where applicable |
256
+ | **FORBIDDEN: TODO/FIXME Placeholders** | Design documents MUST contain complete implementation logic. Do NOT use TODO, FIXME, HACK, or any placeholder comments. Every screen, component, and method MUST be fully specified with actual pseudocode. |
257
+ | **API Route Consistency** | All API routes in the design document MUST exactly match the routes defined in the API Contract document. Before writing any route, READ the API Contract and copy routes verbatim. Do NOT invent or modify routes. |
258
+ | **Cross-Feature Dependency Marking** | When referencing functionality from another Feature (e.g., conflict detection from F-APPT-002), MUST explicitly mark it as `[DEPENDENCY: F-XXX-NNN]` and define a degradation strategy (e.g., hide button, show placeholder) for when that Feature is not yet implemented. |
259
+ | **Mermaid for All Diagrams** | ALL screen trees, navigation flows, interaction sequences, and state diagrams MUST use Mermaid syntax (`graph TB`, `sequenceDiagram`, `flowchart`). Plain text ASCII diagrams are FORBIDDEN for these sections. |
256
260
 
257
261
  # Checklist
258
262
 
@@ -269,4 +273,8 @@ After completing all steps, output a structured completion report for the System
269
273
  - [ ] App lifecycle handling documented
270
274
  - [ ] INDEX.md generated with complete module list
271
275
  - [ ] All files written to correct paths under 03.system-design/{platform_id}/
272
- - [ ] Checkpoint A passed: function extraction confirmed with user
276
+ - [ ] **Checkpoint A passed**: function extraction confirmed with user
277
+ - [ ] **No TODO/FIXME placeholders** — all screens and methods have complete pseudocode
278
+ - [ ] **API routes match API Contract exactly** — verified route-by-route
279
+ - [ ] **Cross-Feature dependencies explicitly marked** — all `[DEPENDENCY: F-XXX-NNN]` tags present with degradation strategy
280
+ - [ ] **Mermaid diagrams used** — no ASCII text diagrams for flows or screen trees
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speccrew",
3
- "version": "0.5.8",
3
+ "version": "0.5.9",
4
4
  "description": "Spec-Driven Development toolkit for AI-powered IDEs",
5
5
  "author": "charlesmu99",
6
6
  "repository": {