spec-feature 1.1.0 → 1.1.1
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.
- package/README.md +18 -10
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -30,22 +30,30 @@ graph TD
|
|
|
30
30
|
A --> C[feature.md]
|
|
31
31
|
A --> D[core/]
|
|
32
32
|
A --> E[features/]
|
|
33
|
+
A --> F[constitution/]
|
|
33
34
|
|
|
34
|
-
D -->
|
|
35
|
-
D -->
|
|
36
|
-
D -->
|
|
37
|
-
D -->
|
|
38
|
-
D -->
|
|
35
|
+
D --> G[spec.md]
|
|
36
|
+
D --> H[plan.md]
|
|
37
|
+
D --> I[tasks.md]
|
|
38
|
+
D --> J[verify.md]
|
|
39
|
+
D --> K[hotfix.md]
|
|
39
40
|
|
|
40
|
-
E -->
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
E --> L[user-auth/]
|
|
42
|
+
L --> M[spec.md]
|
|
43
|
+
L --> N[plan.md]
|
|
44
|
+
L --> O[tasks.md]
|
|
45
|
+
L --> P[verify-report.md]
|
|
45
46
|
```
|
|
46
47
|
|
|
47
48
|
**Templates** (core/) → **Features** (features/)
|
|
48
49
|
|
|
50
|
+
## 🧭 Constitution
|
|
51
|
+
|
|
52
|
+
- `spec/constitution/` stores project rules and constraints for humans and AI.
|
|
53
|
+
- Before changes, read `spec/constitution/README.md` and all files in the folder.
|
|
54
|
+
- Conflict order: Constitution > feature specs > plans > tasks.
|
|
55
|
+
- Add or update Constitution documents when a new invariant requirement appears.
|
|
56
|
+
|
|
49
57
|
## 🎬 Workflow
|
|
50
58
|
|
|
51
59
|
**Send these prompts to your AI assistant** (Claude, Cursor, Copilot, etc.) to create, execute, and update features.
|