specweave 0.16.5 → 0.17.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/bin/fix-marketplace-errors.sh +136 -0
- package/dist/cli/helpers/issue-tracker/index.d.ts.map +1 -1
- package/dist/cli/helpers/issue-tracker/index.js +21 -0
- package/dist/cli/helpers/issue-tracker/index.js.map +1 -1
- package/package.json +2 -2
- package/plugins/specweave-ado/agents/ado-multi-project-mapper/AGENT.md +521 -0
- package/plugins/specweave-ado/agents/ado-sync-judge/AGENT.md +418 -0
- package/plugins/specweave-ado/hooks/post-living-docs-update.sh +353 -0
- package/plugins/specweave-ado/lib/ado-project-detector.js +469 -0
- package/plugins/specweave-ado/lib/ado-project-detector.ts +510 -0
- package/plugins/specweave-ado/lib/conflict-resolver.js +297 -0
- package/plugins/specweave-ado/lib/conflict-resolver.ts +443 -0
- package/plugins/specweave-ado/skills/ado-multi-project/SKILL.md +541 -0
- package/plugins/specweave-ado/skills/ado-resource-validator/SKILL.md +719 -0
- package/src/templates/CLAUDE.md.template +24 -0
|
@@ -87,6 +87,30 @@ This project uses **SpecWeave** - a specification-first AI development framework
|
|
|
87
87
|
|
|
88
88
|
---
|
|
89
89
|
|
|
90
|
+
## ⚠️ Increment Discipline (CRITICAL)
|
|
91
|
+
|
|
92
|
+
### 🚨 INCREMENT NUMBERS MUST BE UNIQUE!
|
|
93
|
+
|
|
94
|
+
**Duplicate numbers break everything** - sync, status line, git history.
|
|
95
|
+
|
|
96
|
+
**Format**: `####-descriptive-name` (e.g., `0001-user-auth`)
|
|
97
|
+
|
|
98
|
+
**Check before creating:**
|
|
99
|
+
```bash
|
|
100
|
+
ls -1 .specweave/increments/ | grep -E "^[0-9]{4}-" | sort | tail -5
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
### 📁 Folder Structure (MANDATORY)
|
|
104
|
+
|
|
105
|
+
**Only 3 files in root:** `spec.md`, `plan.md`, `tasks.md`
|
|
106
|
+
|
|
107
|
+
**Everything else in subfolders:**
|
|
108
|
+
- `reports/` - Analysis, summaries, session notes
|
|
109
|
+
- `scripts/` - Helper scripts
|
|
110
|
+
- `logs/` - Execution logs
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
90
114
|
## 🔗 Automatic Syncing (Living Docs + External Tools)
|
|
91
115
|
|
|
92
116
|
**SpecWeave automatically syncs your work** after EVERY task completion via hooks:
|