specweave 1.0.294 → 1.0.296
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 +7 -3
- package/README.md +10 -3
- package/dist/src/cli/commands/update.d.ts.map +1 -1
- package/dist/src/cli/commands/update.js +18 -0
- package/dist/src/cli/commands/update.js.map +1 -1
- package/dist/src/core/doctor/checkers/installation-health-checker.d.ts +42 -0
- package/dist/src/core/doctor/checkers/installation-health-checker.d.ts.map +1 -0
- package/dist/src/core/doctor/checkers/installation-health-checker.js +325 -0
- package/dist/src/core/doctor/checkers/installation-health-checker.js.map +1 -0
- package/dist/src/core/doctor/doctor.d.ts.map +1 -1
- package/dist/src/core/doctor/doctor.js +7 -0
- package/dist/src/core/doctor/doctor.js.map +1 -1
- package/dist/src/core/doctor/index.d.ts +1 -0
- package/dist/src/core/doctor/index.d.ts.map +1 -1
- package/dist/src/core/doctor/index.js +1 -0
- package/dist/src/core/doctor/index.js.map +1 -1
- package/dist/src/core/living-docs/living-docs-sync.d.ts +0 -7
- package/dist/src/core/living-docs/living-docs-sync.d.ts.map +1 -1
- package/dist/src/core/living-docs/living-docs-sync.js +5 -15
- package/dist/src/core/living-docs/living-docs-sync.js.map +1 -1
- package/package.json +2 -2
- package/plugins/specweave/lib/hooks/sync-living-docs.js +23 -3
- package/plugins/specweave/skills/doctor/SKILL.md +68 -0
- package/plugins/specweave/skills/npm/SKILL.md +36 -5
- package/src/templates/CLAUDE.md.template +7 -3
|
@@ -60,16 +60,20 @@ SpecWeave auto-detects product descriptions and routes to `/sw:increment`:
|
|
|
60
60
|
<!-- SECTION:metarule required -->
|
|
61
61
|
## Workflow Orchestration
|
|
62
62
|
|
|
63
|
-
### 1. Plan Mode Default
|
|
64
|
-
-
|
|
65
|
-
-
|
|
63
|
+
### 1. Plan Mode Default (MANDATORY)
|
|
64
|
+
- **ALWAYS enter plan mode** for ANY non-trivial task (3+ steps or architectural decisions)
|
|
65
|
+
- Call `EnterPlanMode` BEFORE writing specs, plans, or task breakdowns
|
|
66
|
+
- Do NOT start implementation until the plan is reviewed and approved
|
|
67
|
+
- If something goes sideways, **STOP and re-plan** -- do not keep pushing
|
|
66
68
|
- Write detailed specs upfront to reduce ambiguity
|
|
69
|
+
- `/sw:increment` REQUIRES plan mode -- never skip it
|
|
67
70
|
|
|
68
71
|
### 2. Subagent Strategy
|
|
69
72
|
- Use subagents liberally to keep main context clean
|
|
70
73
|
- Offload research, exploration, and parallel analysis to subagents
|
|
71
74
|
- One task per subagent for focused execution
|
|
72
75
|
- Append "use subagents" to requests for safe parallelization
|
|
76
|
+
- In team mode, sub-agents submit plans for team lead review before implementing
|
|
73
77
|
|
|
74
78
|
### 3. Verification Before Done
|
|
75
79
|
- Never mark a task complete without proving it works
|