specweave 0.21.3 → 0.22.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.
- package/CLAUDE.md +198 -6
- package/README.md +33 -3
- package/dist/plugins/specweave-github/lib/CodeValidator.d.ts +101 -0
- package/dist/plugins/specweave-github/lib/CodeValidator.d.ts.map +1 -0
- package/dist/plugins/specweave-github/lib/CodeValidator.js +219 -0
- package/dist/plugins/specweave-github/lib/CodeValidator.js.map +1 -0
- package/dist/plugins/specweave-github/lib/ThreeLayerSyncManager.d.ts +182 -0
- package/dist/plugins/specweave-github/lib/ThreeLayerSyncManager.d.ts.map +1 -0
- package/dist/plugins/specweave-github/lib/ThreeLayerSyncManager.js +603 -0
- package/dist/plugins/specweave-github/lib/ThreeLayerSyncManager.js.map +1 -0
- package/dist/plugins/specweave-github/lib/types.d.ts +34 -0
- package/dist/plugins/specweave-github/lib/types.d.ts.map +1 -1
- package/dist/src/cli/commands/init.d.ts.map +1 -1
- package/dist/src/cli/commands/init.js +60 -5
- package/dist/src/cli/commands/init.js.map +1 -1
- package/dist/src/config/types.d.ts +8 -8
- package/dist/src/core/living-docs/CompletionPropagator.d.ts.map +1 -1
- package/dist/src/core/living-docs/CompletionPropagator.js +4 -3
- package/dist/src/core/living-docs/CompletionPropagator.js.map +1 -1
- package/dist/src/core/living-docs/SpecDistributor.d.ts +5 -0
- package/dist/src/core/living-docs/SpecDistributor.d.ts.map +1 -1
- package/dist/src/core/living-docs/SpecDistributor.js +12 -0
- package/dist/src/core/living-docs/SpecDistributor.js.map +1 -1
- package/dist/src/core/living-docs/project-detector.d.ts.map +1 -1
- package/dist/src/core/living-docs/project-detector.js +38 -0
- package/dist/src/core/living-docs/project-detector.js.map +1 -1
- package/dist/src/core/types/config.d.ts +23 -0
- package/dist/src/core/types/config.d.ts.map +1 -1
- package/dist/src/core/types/config.js +10 -0
- package/dist/src/core/types/config.js.map +1 -1
- package/dist/src/init/ArchitecturePresenter.d.ts +47 -0
- package/dist/src/init/ArchitecturePresenter.d.ts.map +1 -0
- package/dist/src/init/ArchitecturePresenter.js +180 -0
- package/dist/src/init/ArchitecturePresenter.js.map +1 -0
- package/dist/src/init/InitFlow.d.ts.map +1 -1
- package/dist/src/init/InitFlow.js +30 -1
- package/dist/src/init/InitFlow.js.map +1 -1
- package/dist/src/init/architecture/CostEstimator.d.ts +52 -0
- package/dist/src/init/architecture/CostEstimator.d.ts.map +1 -0
- package/dist/src/init/architecture/CostEstimator.js +107 -0
- package/dist/src/init/architecture/CostEstimator.js.map +1 -0
- package/dist/src/init/architecture/InfrastructureMapper.d.ts +41 -0
- package/dist/src/init/architecture/InfrastructureMapper.d.ts.map +1 -0
- package/dist/src/init/architecture/InfrastructureMapper.js +140 -0
- package/dist/src/init/architecture/InfrastructureMapper.js.map +1 -0
- package/dist/src/init/architecture/ProjectGenerator.d.ts +44 -0
- package/dist/src/init/architecture/ProjectGenerator.d.ts.map +1 -0
- package/dist/src/init/architecture/ProjectGenerator.js +216 -0
- package/dist/src/init/architecture/ProjectGenerator.js.map +1 -0
- package/dist/src/init/research/src/config/types.d.ts +8 -8
- package/package.json +9 -8
- package/plugins/specweave-ado/lib/enhanced-ado-sync.js +170 -0
- package/plugins/specweave-github/lib/CodeValidator.js +195 -0
- package/plugins/specweave-github/lib/CodeValidator.ts +284 -0
- package/plugins/specweave-github/lib/ThreeLayerSyncManager.js +545 -0
- package/plugins/specweave-github/lib/ThreeLayerSyncManager.ts +809 -0
- package/plugins/specweave-github/lib/types.ts +38 -0
- package/plugins/specweave-release/hooks/.specweave/logs/dora-tracking.log +1200 -0
- package/src/templates/AGENTS.md.template +22 -1
|
@@ -207,15 +207,36 @@ This is a **SpecWeave project** where specifications and documentation are the s
|
|
|
207
207
|
```
|
|
208
208
|
⛔ NEVER pollute project root with .md files!
|
|
209
209
|
⛔ Increment IDs must be unique (0001-9999)!
|
|
210
|
-
⛔
|
|
210
|
+
⛔ ONLY 3 files in increment root: spec.md, plan.md, tasks.md
|
|
211
|
+
⛔ All reports/scripts/logs go in increment subfolders!
|
|
211
212
|
⛔ Always check: git status (before committing)!
|
|
212
213
|
```
|
|
213
214
|
|
|
214
215
|
#### File Organization {#file-organization}
|
|
216
|
+
|
|
217
|
+
**Increment Structure (MANDATORY)**:
|
|
218
|
+
```
|
|
219
|
+
.specweave/increments/0001-feature/
|
|
220
|
+
├── spec.md # ⚠️ ONLY THESE 3 FILES in root!
|
|
221
|
+
├── plan.md
|
|
222
|
+
├── tasks.md
|
|
223
|
+
├── reports/ # ✅ ALL REPORTS HERE
|
|
224
|
+
│ ├── SESSION-*.md
|
|
225
|
+
│ ├── QUICK-START.md
|
|
226
|
+
│ ├── ULTRATHINK-*.md
|
|
227
|
+
│ └── ANALYSIS-*.md
|
|
228
|
+
├── scripts/ # ✅ ALL SCRIPTS HERE
|
|
229
|
+
│ └── *.{py,sh,ts}
|
|
230
|
+
└── logs/ # ✅ ALL LOGS HERE
|
|
231
|
+
└── *.log
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
**File Placement Rules**:
|
|
215
235
|
```
|
|
216
236
|
┌────────────────────────────────────────────────────────────┐
|
|
217
237
|
│ NEVER in Root ↔ ALWAYS in Increment Folder │
|
|
218
238
|
├────────────────────────────────────────────────────────────┤
|
|
239
|
+
│ ❌ QUICK-START.md ↔ ✅ .../0001/reports/QUICK-START │
|
|
219
240
|
│ ❌ analysis.md ↔ ✅ .../0001/reports/analysis.md │
|
|
220
241
|
│ ❌ migration.py ↔ ✅ .../0001/scripts/migration.py │
|
|
221
242
|
│ ❌ execution.log ↔ ✅ .../0001/logs/execution.log │
|