specweave 0.23.2 → 0.23.4

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 (98) hide show
  1. package/CLAUDE.md +268 -0
  2. package/dist/plugins/specweave/lib/utils/fs-native.d.ts +133 -0
  3. package/dist/plugins/specweave/lib/utils/fs-native.d.ts.map +1 -0
  4. package/dist/plugins/specweave/lib/utils/fs-native.js +224 -0
  5. package/dist/plugins/specweave/lib/utils/fs-native.js.map +1 -0
  6. package/dist/plugins/specweave-github/lib/github-client-v2.js +1 -1
  7. package/dist/plugins/specweave-github/lib/github-client-v2.js.map +1 -1
  8. package/dist/plugins/specweave-github/lib/github-feature-sync.d.ts.map +1 -1
  9. package/dist/plugins/specweave-github/lib/github-feature-sync.js +52 -20
  10. package/dist/plugins/specweave-github/lib/github-feature-sync.js.map +1 -1
  11. package/dist/src/cli/helpers/init/initial-increment-generator.d.ts.map +1 -1
  12. package/dist/src/cli/helpers/init/initial-increment-generator.js +2 -1
  13. package/dist/src/cli/helpers/init/initial-increment-generator.js.map +1 -1
  14. package/dist/src/core/ac-test-validator-cli.d.ts +16 -0
  15. package/dist/src/core/ac-test-validator-cli.d.ts.map +1 -0
  16. package/dist/src/core/ac-test-validator-cli.js +118 -0
  17. package/dist/src/core/ac-test-validator-cli.js.map +1 -0
  18. package/dist/src/core/ac-test-validator.d.ts +111 -0
  19. package/dist/src/core/ac-test-validator.d.ts.map +1 -0
  20. package/dist/src/core/ac-test-validator.js +292 -0
  21. package/dist/src/core/ac-test-validator.js.map +1 -0
  22. package/dist/src/core/increment/desync-detector.d.ts +142 -0
  23. package/dist/src/core/increment/desync-detector.d.ts.map +1 -0
  24. package/dist/src/core/increment/desync-detector.js +270 -0
  25. package/dist/src/core/increment/desync-detector.js.map +1 -0
  26. package/dist/src/core/increment/metadata-manager.d.ts +8 -4
  27. package/dist/src/core/increment/metadata-manager.d.ts.map +1 -1
  28. package/dist/src/core/increment/metadata-manager.js +45 -21
  29. package/dist/src/core/increment/metadata-manager.js.map +1 -1
  30. package/dist/src/core/qa/qa-runner.js +9 -2
  31. package/dist/src/core/qa/qa-runner.js.map +1 -1
  32. package/dist/src/sync/sync-coordinator.d.ts +1 -1
  33. package/dist/src/sync/sync-coordinator.d.ts.map +1 -1
  34. package/dist/src/sync/sync-coordinator.js +40 -2
  35. package/dist/src/sync/sync-coordinator.js.map +1 -1
  36. package/dist/src/utils/fs-native.d.ts +133 -0
  37. package/dist/src/utils/fs-native.d.ts.map +1 -0
  38. package/dist/src/utils/fs-native.js +224 -0
  39. package/dist/src/utils/fs-native.js.map +1 -0
  40. package/package.json +1 -1
  41. package/plugins/specweave/.claude-plugin/plugin.json +12 -0
  42. package/plugins/specweave/agents/AGENTS-INDEX.md +216 -0
  43. package/plugins/specweave/agents/architect/AGENT.md +17 -0
  44. package/plugins/specweave/agents/code-standards-detective/AGENT.md +16 -0
  45. package/plugins/specweave/agents/docs-writer/AGENT.md +16 -0
  46. package/plugins/specweave/agents/increment-quality-judge-v2/AGENT.md +704 -0
  47. package/plugins/specweave/agents/infrastructure/AGENT.md +16 -0
  48. package/plugins/specweave/agents/performance/AGENT.md +16 -0
  49. package/plugins/specweave/agents/pm/AGENT.md +17 -0
  50. package/plugins/specweave/agents/qa-lead/AGENT.md +15 -0
  51. package/plugins/specweave/agents/reflective-reviewer/AGENT.md +16 -0
  52. package/plugins/specweave/agents/security/AGENT.md +16 -0
  53. package/plugins/specweave/agents/tdd-orchestrator/AGENT.md +16 -0
  54. package/plugins/specweave/agents/tech-lead/AGENT.md +16 -0
  55. package/plugins/specweave/agents/test-aware-planner/AGENT.md +16 -0
  56. package/plugins/specweave/agents/translator/AGENT.md +13 -0
  57. package/plugins/specweave/commands/specweave-done.md +14 -0
  58. package/plugins/specweave/commands/specweave-qa.md +11 -1
  59. package/plugins/specweave/commands/specweave-sync-status.md +356 -0
  60. package/plugins/specweave/commands/specweave-validate.md +10 -1
  61. package/plugins/specweave/hooks/pre-task-completion.sh +196 -0
  62. package/plugins/specweave/lib/hooks/git-diff-analyzer.js +3 -3
  63. package/plugins/specweave/lib/hooks/git-diff-analyzer.ts +3 -3
  64. package/plugins/specweave/lib/hooks/invoke-translator-skill.js +3 -2
  65. package/plugins/specweave/lib/hooks/invoke-translator-skill.ts +3 -2
  66. package/plugins/specweave/lib/hooks/prepare-reflection-context.js +3 -3
  67. package/plugins/specweave/lib/hooks/prepare-reflection-context.ts +3 -3
  68. package/plugins/specweave/lib/hooks/reflection-config-loader.js +4 -4
  69. package/plugins/specweave/lib/hooks/reflection-config-loader.ts +4 -4
  70. package/plugins/specweave/lib/hooks/reflection-storage.js +9 -9
  71. package/plugins/specweave/lib/hooks/reflection-storage.ts +9 -9
  72. package/plugins/specweave/lib/hooks/sync-cache.js +9 -8
  73. package/plugins/specweave/lib/hooks/sync-living-docs.js +57 -6
  74. package/plugins/specweave/lib/hooks/sync-us-tasks.js +6 -6
  75. package/plugins/specweave/lib/hooks/translate-file.js +3 -2
  76. package/plugins/specweave/lib/hooks/translate-file.ts +3 -2
  77. package/plugins/specweave/lib/hooks/translate-living-docs.js +4 -3
  78. package/plugins/specweave/lib/hooks/translate-living-docs.ts +4 -3
  79. package/plugins/specweave/lib/utils/fs-native.js +182 -0
  80. package/plugins/specweave/lib/utils/fs-native.ts +283 -0
  81. package/plugins/specweave/lib/vendor/core/increment/metadata-manager.d.ts +8 -4
  82. package/plugins/specweave/lib/vendor/core/increment/metadata-manager.js +45 -21
  83. package/plugins/specweave/lib/vendor/core/increment/metadata-manager.js.map +1 -1
  84. package/plugins/specweave/skills/SKILLS-INDEX.md +26 -2
  85. package/plugins/specweave/skills/increment-planner/SKILL.md +2 -2
  86. package/plugins/specweave-ado/commands/specweave-ado-close-workitem.md +1 -1
  87. package/plugins/specweave-ado/commands/specweave-ado-create-workitem.md +1 -1
  88. package/plugins/specweave-ado/commands/specweave-ado-status.md +1 -1
  89. package/plugins/specweave-ado/commands/specweave-ado-sync.md +1 -1
  90. package/plugins/specweave-diagrams/agents/diagrams-architect/AGENT.md +1 -1
  91. package/plugins/specweave-diagrams/skills/diagrams-generator/SKILL.md +4 -4
  92. package/plugins/specweave-github/lib/github-client-v2.js +2 -1
  93. package/plugins/specweave-github/lib/github-client-v2.ts +1 -1
  94. package/plugins/specweave-github/lib/github-feature-sync.js +30 -17
  95. package/plugins/specweave-github/lib/github-feature-sync.ts +54 -24
  96. package/plugins/specweave-mobile/README.md +1 -1
  97. package/plugins/specweave-release/hooks/.specweave/logs/dora-tracking.log +72 -0
  98. package/plugins/specweave/skills/task-builder/README.md +0 -84
@@ -6223,3 +6223,75 @@
6223
6223
  [2025-11-20 16:35:05] 🎯 Post-Increment-Completion Hook Triggered
6224
6224
  [2025-11-20 16:35:05] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6225
6225
  [2025-11-20 16:35:05] Run: npm run build
6226
+ [2025-11-20 17:12:16] 🎯 Post-Increment-Completion Hook Triggered
6227
+ [2025-11-20 17:12:16] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6228
+ [2025-11-20 17:12:16] Run: npm run build
6229
+ [2025-11-20 17:12:21] 🎯 Post-Increment-Completion Hook Triggered
6230
+ [2025-11-20 17:12:21] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6231
+ [2025-11-20 17:12:21] Run: npm run build
6232
+ [2025-11-20 17:12:27] 🎯 Post-Increment-Completion Hook Triggered
6233
+ [2025-11-20 17:12:27] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6234
+ [2025-11-20 17:12:27] Run: npm run build
6235
+ [2025-11-20 17:12:32] 🎯 Post-Increment-Completion Hook Triggered
6236
+ [2025-11-20 17:12:32] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6237
+ [2025-11-20 17:12:32] Run: npm run build
6238
+ [2025-11-20 18:11:17] 🎯 Post-Increment-Completion Hook Triggered
6239
+ [2025-11-20 18:11:17] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6240
+ [2025-11-20 18:11:17] Run: npm run build
6241
+ [2025-11-20 18:11:22] 🎯 Post-Increment-Completion Hook Triggered
6242
+ [2025-11-20 18:11:22] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6243
+ [2025-11-20 18:11:22] Run: npm run build
6244
+ [2025-11-20 18:11:27] 🎯 Post-Increment-Completion Hook Triggered
6245
+ [2025-11-20 18:11:27] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6246
+ [2025-11-20 18:11:27] Run: npm run build
6247
+ [2025-11-20 18:11:33] 🎯 Post-Increment-Completion Hook Triggered
6248
+ [2025-11-20 18:11:33] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6249
+ [2025-11-20 18:11:33] Run: npm run build
6250
+ [2025-11-20 18:35:45] 🎯 Post-Increment-Completion Hook Triggered
6251
+ [2025-11-20 18:35:45] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6252
+ [2025-11-20 18:35:45] Run: npm run build
6253
+ [2025-11-20 18:35:45] 🎯 Post-Increment-Completion Hook Triggered
6254
+ [2025-11-20 18:35:45] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6255
+ [2025-11-20 18:35:45] Run: npm run build
6256
+ [2025-11-20 18:35:45] 🎯 Post-Increment-Completion Hook Triggered
6257
+ [2025-11-20 18:35:45] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6258
+ [2025-11-20 18:35:45] Run: npm run build
6259
+ [2025-11-20 18:35:45] 🎯 Post-Increment-Completion Hook Triggered
6260
+ [2025-11-20 18:35:45] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6261
+ [2025-11-20 18:35:45] Run: npm run build
6262
+ [2025-11-20 18:35:51] 🎯 Post-Increment-Completion Hook Triggered
6263
+ [2025-11-20 18:35:51] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6264
+ [2025-11-20 18:35:51] Run: npm run build
6265
+ [2025-11-20 18:35:57] 🎯 Post-Increment-Completion Hook Triggered
6266
+ [2025-11-20 18:35:57] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6267
+ [2025-11-20 18:35:57] Run: npm run build
6268
+ [2025-11-20 18:36:03] 🎯 Post-Increment-Completion Hook Triggered
6269
+ [2025-11-20 18:36:03] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6270
+ [2025-11-20 18:36:03] Run: npm run build
6271
+ [2025-11-20 18:36:09] 🎯 Post-Increment-Completion Hook Triggered
6272
+ [2025-11-20 18:36:09] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6273
+ [2025-11-20 18:36:09] Run: npm run build
6274
+ [2025-11-20 18:50:14] 🎯 Post-Increment-Completion Hook Triggered
6275
+ [2025-11-20 18:50:14] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6276
+ [2025-11-20 18:50:14] Run: npm run build
6277
+ [2025-11-20 18:50:14] 🎯 Post-Increment-Completion Hook Triggered
6278
+ [2025-11-20 18:50:14] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6279
+ [2025-11-20 18:50:14] Run: npm run build
6280
+ [2025-11-20 18:50:14] 🎯 Post-Increment-Completion Hook Triggered
6281
+ [2025-11-20 18:50:14] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6282
+ [2025-11-20 18:50:14] Run: npm run build
6283
+ [2025-11-20 18:50:15] 🎯 Post-Increment-Completion Hook Triggered
6284
+ [2025-11-20 18:50:15] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6285
+ [2025-11-20 18:50:15] Run: npm run build
6286
+ [2025-11-20 18:50:20] 🎯 Post-Increment-Completion Hook Triggered
6287
+ [2025-11-20 18:50:20] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6288
+ [2025-11-20 18:50:20] Run: npm run build
6289
+ [2025-11-20 18:50:26] 🎯 Post-Increment-Completion Hook Triggered
6290
+ [2025-11-20 18:50:26] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6291
+ [2025-11-20 18:50:26] Run: npm run build
6292
+ [2025-11-20 18:50:32] 🎯 Post-Increment-Completion Hook Triggered
6293
+ [2025-11-20 18:50:32] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6294
+ [2025-11-20 18:50:32] Run: npm run build
6295
+ [2025-11-20 18:50:38] 🎯 Post-Increment-Completion Hook Triggered
6296
+ [2025-11-20 18:50:38] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
6297
+ [2025-11-20 18:50:38] Run: npm run build
@@ -1,84 +0,0 @@
1
- # task-builder Skill
2
-
3
- **Status**: To be developed
4
- **Priority**: High
5
-
6
- ## Purpose
7
-
8
- Converts high-level spec.md (user stories, epics, capabilities) into detailed tasks.md with:
9
- - Technical implementation details
10
- - File paths and code snippets
11
- - Acceptance criteria per task
12
- - Agent/skill references (which agent to use for each task)
13
- - Documentation update requirements
14
-
15
- ## When It Activates
16
-
17
- - After increment-planner creates increment
18
- - After spec.md is created
19
- - User says "create tasks for this feature"
20
- - User says "break down implementation"
21
-
22
- ## What It Does
23
-
24
- 1. **Reads spec.md**: Understands user stories, acceptance tests
25
- 2. **Creates tasks.md**:
26
- - Maps user stories → tasks
27
- - Adds technical details (file paths, code)
28
- - Adds acceptance criteria per task
29
- - Specifies which agent/skills to use
30
- - Links to documentation
31
- 3. **Updates docs**: Marks sections as [DRAFT] that need updates
32
- 4. **Understands structure**: Adapts to JIRA, ADO, or simple user stories
33
-
34
- ## Task vs User Story
35
-
36
- - **User Story**: Has acceptance TESTS (verify feature works)
37
- - **Task**: Has acceptance CRITERIA (verify task complete)
38
-
39
- ## Example Output
40
-
41
- ```markdown
42
- # tasks.md
43
-
44
- ## Task T001: Create StripeService
45
-
46
- **Agent**: nodejs-backend
47
- **Skills**: stripe-integration, api-design
48
-
49
- **Description**: Create Stripe service class for payment processing
50
-
51
- **File**: src/services/stripe-service.ts
52
-
53
- **Implementation**:
54
- ```typescript
55
- export class StripeService {
56
- async createSubscription(params) {
57
- // Implementation
58
- }
59
- }
60
- ```
61
-
62
- **Acceptance Criteria**:
63
- - [ ] StripeService class exists in src/services/stripe-service.ts
64
- - [ ] createSubscription method implemented
65
- - [ ] Error handling added
66
- - [ ] Unit tests passing
67
-
68
- **Documentation Updates**:
69
- - [ ] .specweave/docs/api/payments.md [DRAFT]
70
- ```
71
-
72
- ## Integration
73
-
74
- - Called by: increment-planner (after spec.md created)
75
- - Calls: docs-updater (to update documentation)
76
- - Output: tasks.md in .specweave/increments/####-feature/
77
-
78
- ## Configuration
79
-
80
-
81
-
82
- ---
83
-
84
- **To implement**: See task in .specweave/increments/