specpilot 1.6.1 → 1.6.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.
- package/README.md +5 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -110,8 +110,11 @@ SpecPilot generates a `.specs/` folder with organized subdirectories:
|
|
|
110
110
|
├── project/
|
|
111
111
|
│ ├── project.yaml # Project config, rules, and AI context (MANDATED)
|
|
112
112
|
│ └── requirements.md # Functional & non-functional requirements
|
|
113
|
-
|
|
114
|
-
|
|
113
|
+
├── quality/
|
|
114
|
+
│ └── tests.md # Test strategy, coverage targets, acceptance criteria
|
|
115
|
+
└── security/
|
|
116
|
+
├── security-decisions.md # ADR-style security design decisions
|
|
117
|
+
└── threat-model.md # Threat inventory with impact/likelihood/mitigation
|
|
115
118
|
```
|
|
116
119
|
|
|
117
120
|
> Also generated at project root: `.github/copilot-instructions.md` (AI mandate enforcement)
|
package/package.json
CHANGED