specweave 1.0.477 → 1.0.479

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.
Files changed (87) hide show
  1. package/README.md +3 -1
  2. package/dist/plugins/specweave/lib/vendor/core/increment/active-increment-manager.js +2 -1
  3. package/dist/plugins/specweave/lib/vendor/core/increment/active-increment-manager.js.map +1 -1
  4. package/dist/src/cli/commands/refresh-plugins.js +2 -2
  5. package/dist/src/cli/commands/refresh-plugins.js.map +1 -1
  6. package/dist/src/cli/helpers/init/plugin-installer.d.ts.map +1 -1
  7. package/dist/src/cli/helpers/init/plugin-installer.js +11 -0
  8. package/dist/src/cli/helpers/init/plugin-installer.js.map +1 -1
  9. package/dist/src/core/config/types.d.ts +20 -0
  10. package/dist/src/core/config/types.d.ts.map +1 -1
  11. package/dist/src/core/config/types.js.map +1 -1
  12. package/dist/src/core/hooks/LifecycleHookDispatcher.d.ts.map +1 -1
  13. package/dist/src/core/hooks/LifecycleHookDispatcher.js +13 -0
  14. package/dist/src/core/hooks/LifecycleHookDispatcher.js.map +1 -1
  15. package/dist/src/core/increment/active-increment-manager.d.ts.map +1 -1
  16. package/dist/src/core/increment/active-increment-manager.js +2 -1
  17. package/dist/src/core/increment/active-increment-manager.js.map +1 -1
  18. package/dist/src/core/lazy-loading/project-detector.d.ts.map +1 -1
  19. package/dist/src/core/lazy-loading/project-detector.js +7 -5
  20. package/dist/src/core/lazy-loading/project-detector.js.map +1 -1
  21. package/dist/src/core/living-docs/living-docs-sync.d.ts.map +1 -1
  22. package/dist/src/core/living-docs/living-docs-sync.js +9 -0
  23. package/dist/src/core/living-docs/living-docs-sync.js.map +1 -1
  24. package/dist/src/core/skill-gen/drift-detector.d.ts +24 -0
  25. package/dist/src/core/skill-gen/drift-detector.d.ts.map +1 -0
  26. package/dist/src/core/skill-gen/drift-detector.js +123 -0
  27. package/dist/src/core/skill-gen/drift-detector.js.map +1 -0
  28. package/dist/src/core/skill-gen/signal-collector.d.ts +51 -0
  29. package/dist/src/core/skill-gen/signal-collector.d.ts.map +1 -0
  30. package/dist/src/core/skill-gen/signal-collector.js +224 -0
  31. package/dist/src/core/skill-gen/signal-collector.js.map +1 -0
  32. package/dist/src/core/skill-gen/suggestion-engine.d.ts +21 -0
  33. package/dist/src/core/skill-gen/suggestion-engine.d.ts.map +1 -0
  34. package/dist/src/core/skill-gen/suggestion-engine.js +92 -0
  35. package/dist/src/core/skill-gen/suggestion-engine.js.map +1 -0
  36. package/dist/src/core/skill-gen/types.d.ts +65 -0
  37. package/dist/src/core/skill-gen/types.d.ts.map +1 -0
  38. package/dist/src/core/skill-gen/types.js +25 -0
  39. package/dist/src/core/skill-gen/types.js.map +1 -0
  40. package/dist/src/core/skills/activation-tracker.d.ts.map +1 -1
  41. package/dist/src/core/skills/activation-tracker.js +2 -1
  42. package/dist/src/core/skills/activation-tracker.js.map +1 -1
  43. package/dist/src/core/specs/spec-detector.d.ts.map +1 -1
  44. package/dist/src/core/specs/spec-detector.js +2 -1
  45. package/dist/src/core/specs/spec-detector.js.map +1 -1
  46. package/dist/src/core/types/plugin-scope.d.ts +1 -2
  47. package/dist/src/core/types/plugin-scope.d.ts.map +1 -1
  48. package/dist/src/core/types/plugin-scope.js +3 -7
  49. package/dist/src/core/types/plugin-scope.js.map +1 -1
  50. package/dist/src/hooks/platform.d.ts +1 -11
  51. package/dist/src/hooks/platform.d.ts.map +1 -1
  52. package/dist/src/hooks/platform.js +2 -24
  53. package/dist/src/hooks/platform.js.map +1 -1
  54. package/dist/src/utils/auto-install.d.ts.map +1 -1
  55. package/dist/src/utils/auto-install.js +9 -0
  56. package/dist/src/utils/auto-install.js.map +1 -1
  57. package/package.json +1 -1
  58. package/plugins/specweave/lib/vendor/core/increment/active-increment-manager.js +2 -1
  59. package/plugins/specweave/lib/vendor/core/increment/active-increment-manager.js.map +1 -1
  60. package/plugins/specweave/skills/architect/SKILL.md +4 -0
  61. package/plugins/specweave/skills/auto/SKILL.md +4 -0
  62. package/plugins/specweave/skills/brainstorm/SKILL.md +4 -0
  63. package/plugins/specweave/skills/debug/SKILL.md +4 -0
  64. package/plugins/specweave/skills/do/SKILL.md +4 -0
  65. package/plugins/specweave/skills/done/SKILL.md +4 -0
  66. package/plugins/specweave/skills/e2e/SKILL.md +4 -0
  67. package/plugins/specweave/skills/get/SKILL.md +4 -0
  68. package/plugins/specweave/skills/grill/SKILL.md +4 -0
  69. package/plugins/specweave/skills/import/SKILL.md +4 -0
  70. package/plugins/specweave/skills/increment/SKILL.md +4 -0
  71. package/plugins/specweave/skills/judge-llm/SKILL.md +4 -0
  72. package/plugins/specweave/skills/npm/SKILL.md +4 -0
  73. package/plugins/specweave/skills/plan/SKILL.md +4 -0
  74. package/plugins/specweave/skills/pm/SKILL.md +4 -0
  75. package/plugins/specweave/skills/pr/SKILL.md +4 -0
  76. package/plugins/specweave/skills/progress-sync/SKILL.md +4 -0
  77. package/plugins/specweave/skills/skill-gen/SKILL.md +160 -0
  78. package/plugins/specweave/skills/skill-gen/evals/evals.json +79 -0
  79. package/plugins/specweave/skills/sync-docs/SKILL.md +4 -0
  80. package/plugins/specweave/skills/tdd-cycle/SKILL.md +4 -0
  81. package/plugins/specweave/skills/tdd-green/SKILL.md +4 -0
  82. package/plugins/specweave/skills/tdd-red/SKILL.md +4 -0
  83. package/plugins/specweave/skills/tdd-refactor/SKILL.md +4 -0
  84. package/plugins/specweave/skills/team-build/SKILL.md +4 -0
  85. package/plugins/specweave/skills/team-lead/SKILL.md +4 -0
  86. package/plugins/specweave/skills/team-merge/SKILL.md +4 -0
  87. package/plugins/specweave/skills/validate/SKILL.md +4 -0
@@ -222,3 +222,7 @@ These excuses signal you're about to break TDD discipline. Recognize them and re
222
222
  - Tests should be independent and isolated
223
223
 
224
224
  TDD implementation for: $ARGUMENTS
225
+
226
+ ## Resources
227
+
228
+ - [Official Documentation](https://verified-skill.com/docs/commands/tdd-cycle)
@@ -62,3 +62,7 @@ Output:
62
62
  If tests still fail: review test requirements carefully, check for misunderstood assertions, add minimal code to address specific failures.
63
63
 
64
64
  Tests to make pass: $ARGUMENTS
65
+
66
+ ## Resources
67
+
68
+ - [Official Documentation](https://verified-skill.com/docs/commands/tdd-green)
@@ -68,3 +68,7 @@ After generation:
68
68
  4. Ensure comprehensive coverage"
69
69
 
70
70
  Test requirements: $ARGUMENTS
71
+
72
+ ## Resources
73
+
74
+ - [Official Documentation](https://verified-skill.com/docs/commands/tdd-red)
@@ -37,3 +37,7 @@ Before committing:
37
37
  If tests fail: immediately revert last change, identify breaking refactoring, apply smaller incremental changes.
38
38
 
39
39
  Code to refactor: $ARGUMENTS
40
+
41
+ ## Resources
42
+
43
+ - [Official Documentation](https://verified-skill.com/docs/commands/tdd-refactor)
@@ -474,3 +474,7 @@ Custom presets follow the same execution rules: agents with no `dependsOn` run i
474
474
  | Ownership conflict | Ensure no two agents in the same preset share directory ownership |
475
475
  | TDD gate rejects Green | Agent 1 (Red) tests must genuinely fail — check for accidentally passing tests |
476
476
  | Agents out of sync | Run `/sw:progress` to see per-agent task status and identify blockers |
477
+
478
+ ## Resources
479
+
480
+ - [Official Documentation](https://verified-skill.com/docs/commands/team-build)
@@ -919,3 +919,7 @@ User: /sw:team-lead "Add payment processing" --dry-run
919
919
  | `/sw:auto` | Autonomous execution (single-agent mode) |
920
920
  | `/sw:architect` | System architecture and ADRs |
921
921
  | `/sw:grill` | Quality validation gate |
922
+
923
+ ## Resources
924
+
925
+ - [Official Documentation](https://verified-skill.com/docs/commands/team-lead)
@@ -200,3 +200,7 @@ Shutting down agents... done
200
200
  TeamDelete: team cleaned up.
201
201
  All increments merged and synced.
202
202
  ```
203
+
204
+ ## Resources
205
+
206
+ - [Official Documentation](https://verified-skill.com/docs/commands/team-merge)
@@ -133,3 +133,7 @@ Report includes: executive summary, rule-based results by category, AI quality s
133
133
  - `increment-quality-judge` skill: AI assessment engine
134
134
  - `/sw:done`: validates before closing
135
135
  - `specweave qa <id>`: CLI equivalent
136
+
137
+ ## Resources
138
+
139
+ - [Official Documentation](https://verified-skill.com/docs/commands/validate)