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.
- package/CLAUDE.md +268 -0
- package/dist/plugins/specweave/lib/utils/fs-native.d.ts +133 -0
- package/dist/plugins/specweave/lib/utils/fs-native.d.ts.map +1 -0
- package/dist/plugins/specweave/lib/utils/fs-native.js +224 -0
- package/dist/plugins/specweave/lib/utils/fs-native.js.map +1 -0
- package/dist/plugins/specweave-github/lib/github-client-v2.js +1 -1
- package/dist/plugins/specweave-github/lib/github-client-v2.js.map +1 -1
- package/dist/plugins/specweave-github/lib/github-feature-sync.d.ts.map +1 -1
- package/dist/plugins/specweave-github/lib/github-feature-sync.js +52 -20
- package/dist/plugins/specweave-github/lib/github-feature-sync.js.map +1 -1
- package/dist/src/cli/helpers/init/initial-increment-generator.d.ts.map +1 -1
- package/dist/src/cli/helpers/init/initial-increment-generator.js +2 -1
- package/dist/src/cli/helpers/init/initial-increment-generator.js.map +1 -1
- package/dist/src/core/ac-test-validator-cli.d.ts +16 -0
- package/dist/src/core/ac-test-validator-cli.d.ts.map +1 -0
- package/dist/src/core/ac-test-validator-cli.js +118 -0
- package/dist/src/core/ac-test-validator-cli.js.map +1 -0
- package/dist/src/core/ac-test-validator.d.ts +111 -0
- package/dist/src/core/ac-test-validator.d.ts.map +1 -0
- package/dist/src/core/ac-test-validator.js +292 -0
- package/dist/src/core/ac-test-validator.js.map +1 -0
- package/dist/src/core/increment/desync-detector.d.ts +142 -0
- package/dist/src/core/increment/desync-detector.d.ts.map +1 -0
- package/dist/src/core/increment/desync-detector.js +270 -0
- package/dist/src/core/increment/desync-detector.js.map +1 -0
- package/dist/src/core/increment/metadata-manager.d.ts +8 -4
- package/dist/src/core/increment/metadata-manager.d.ts.map +1 -1
- package/dist/src/core/increment/metadata-manager.js +45 -21
- package/dist/src/core/increment/metadata-manager.js.map +1 -1
- package/dist/src/core/qa/qa-runner.js +9 -2
- package/dist/src/core/qa/qa-runner.js.map +1 -1
- package/dist/src/sync/sync-coordinator.d.ts +1 -1
- package/dist/src/sync/sync-coordinator.d.ts.map +1 -1
- package/dist/src/sync/sync-coordinator.js +40 -2
- package/dist/src/sync/sync-coordinator.js.map +1 -1
- package/dist/src/utils/fs-native.d.ts +133 -0
- package/dist/src/utils/fs-native.d.ts.map +1 -0
- package/dist/src/utils/fs-native.js +224 -0
- package/dist/src/utils/fs-native.js.map +1 -0
- package/package.json +1 -1
- package/plugins/specweave/.claude-plugin/plugin.json +12 -0
- package/plugins/specweave/agents/AGENTS-INDEX.md +216 -0
- package/plugins/specweave/agents/architect/AGENT.md +17 -0
- package/plugins/specweave/agents/code-standards-detective/AGENT.md +16 -0
- package/plugins/specweave/agents/docs-writer/AGENT.md +16 -0
- package/plugins/specweave/agents/increment-quality-judge-v2/AGENT.md +704 -0
- package/plugins/specweave/agents/infrastructure/AGENT.md +16 -0
- package/plugins/specweave/agents/performance/AGENT.md +16 -0
- package/plugins/specweave/agents/pm/AGENT.md +17 -0
- package/plugins/specweave/agents/qa-lead/AGENT.md +15 -0
- package/plugins/specweave/agents/reflective-reviewer/AGENT.md +16 -0
- package/plugins/specweave/agents/security/AGENT.md +16 -0
- package/plugins/specweave/agents/tdd-orchestrator/AGENT.md +16 -0
- package/plugins/specweave/agents/tech-lead/AGENT.md +16 -0
- package/plugins/specweave/agents/test-aware-planner/AGENT.md +16 -0
- package/plugins/specweave/agents/translator/AGENT.md +13 -0
- package/plugins/specweave/commands/specweave-done.md +14 -0
- package/plugins/specweave/commands/specweave-qa.md +11 -1
- package/plugins/specweave/commands/specweave-sync-status.md +356 -0
- package/plugins/specweave/commands/specweave-validate.md +10 -1
- package/plugins/specweave/hooks/pre-task-completion.sh +196 -0
- package/plugins/specweave/lib/hooks/git-diff-analyzer.js +3 -3
- package/plugins/specweave/lib/hooks/git-diff-analyzer.ts +3 -3
- package/plugins/specweave/lib/hooks/invoke-translator-skill.js +3 -2
- package/plugins/specweave/lib/hooks/invoke-translator-skill.ts +3 -2
- package/plugins/specweave/lib/hooks/prepare-reflection-context.js +3 -3
- package/plugins/specweave/lib/hooks/prepare-reflection-context.ts +3 -3
- package/plugins/specweave/lib/hooks/reflection-config-loader.js +4 -4
- package/plugins/specweave/lib/hooks/reflection-config-loader.ts +4 -4
- package/plugins/specweave/lib/hooks/reflection-storage.js +9 -9
- package/plugins/specweave/lib/hooks/reflection-storage.ts +9 -9
- package/plugins/specweave/lib/hooks/sync-cache.js +9 -8
- package/plugins/specweave/lib/hooks/sync-living-docs.js +57 -6
- package/plugins/specweave/lib/hooks/sync-us-tasks.js +6 -6
- package/plugins/specweave/lib/hooks/translate-file.js +3 -2
- package/plugins/specweave/lib/hooks/translate-file.ts +3 -2
- package/plugins/specweave/lib/hooks/translate-living-docs.js +4 -3
- package/plugins/specweave/lib/hooks/translate-living-docs.ts +4 -3
- package/plugins/specweave/lib/utils/fs-native.js +182 -0
- package/plugins/specweave/lib/utils/fs-native.ts +283 -0
- package/plugins/specweave/lib/vendor/core/increment/metadata-manager.d.ts +8 -4
- package/plugins/specweave/lib/vendor/core/increment/metadata-manager.js +45 -21
- package/plugins/specweave/lib/vendor/core/increment/metadata-manager.js.map +1 -1
- package/plugins/specweave/skills/SKILLS-INDEX.md +26 -2
- package/plugins/specweave/skills/increment-planner/SKILL.md +2 -2
- package/plugins/specweave-ado/commands/specweave-ado-close-workitem.md +1 -1
- package/plugins/specweave-ado/commands/specweave-ado-create-workitem.md +1 -1
- package/plugins/specweave-ado/commands/specweave-ado-status.md +1 -1
- package/plugins/specweave-ado/commands/specweave-ado-sync.md +1 -1
- package/plugins/specweave-diagrams/agents/diagrams-architect/AGENT.md +1 -1
- package/plugins/specweave-diagrams/skills/diagrams-generator/SKILL.md +4 -4
- package/plugins/specweave-github/lib/github-client-v2.js +2 -1
- package/plugins/specweave-github/lib/github-client-v2.ts +1 -1
- package/plugins/specweave-github/lib/github-feature-sync.js +30 -17
- package/plugins/specweave-github/lib/github-feature-sync.ts +54 -24
- package/plugins/specweave-mobile/README.md +1 -1
- package/plugins/specweave-release/hooks/.specweave/logs/dora-tracking.log +72 -0
- 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/
|