@atlashub/smartstack-cli 2.7.1 → 2.7.2

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.
@@ -54,16 +54,27 @@ For each mustHave/shouldHave scope item:
54
54
  - "Does the codebase already have modules that should be extended vs. created new?"
55
55
 
56
56
  **For each module, determine:**
57
- ```json
58
- {
59
- "code": "PascalCase module name",
60
- "description": "1-2 sentence description",
61
- "featureType": "data-centric | integration | ui-centric | workflow | reporting | full-module",
62
- "entities": ["Anticipated entity names"],
63
- "priority": "must | should | could",
64
- "estimatedComplexity": "simple | medium | complex"
65
- }
66
- ```
57
+
58
+ > **STRUCTURE CARD: modules[]** — Field names are EXACT. Include ALL fields below.
59
+ > ```json
60
+ > {
61
+ > "code": "PascalCase",
62
+ > "description": "1-2 sentence description",
63
+ > "featureType": "data-centric|integration|ui-centric|workflow|reporting|full-module",
64
+ > "dependencies": ["OtherModule"],
65
+ > "dependents": ["DependentModule"],
66
+ > "status": "pending",
67
+ > "featureJsonPath": null,
68
+ > "priority": "must|should|could",
69
+ > "sortOrder": 0,
70
+ > "entities": ["Anticipated entity names"],
71
+ > "estimatedComplexity": "simple|medium|complex"
72
+ > }
73
+ > ```
74
+ > **MANDATORY fields:** `code`, `description`, `featureType`, `dependencies`, `dependents`, `status`, `priority`, `sortOrder`, `entities`, `estimatedComplexity`
75
+ > **status:** Always `"pending"` at creation (updated to `"in-progress"` → `"specified"` → `"validated"` by step-03/04)
76
+ > **sortOrder:** Integer from topological sort (0 = foundation layer)
77
+ > **featureJsonPath:** Set to null at creation; updated to actual path when module feature.json is created in step-03
67
78
 
68
79
  **Complexity estimation rules:**
69
80
  | Criteria | Simple | Medium | Complex |