specweave 0.28.14 → 0.28.17
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/specweave.js +1 -1
- package/dist/src/cli/commands/import-external.d.ts.map +1 -1
- package/dist/src/cli/commands/import-external.js +128 -16
- package/dist/src/cli/commands/import-external.js.map +1 -1
- package/dist/src/cli/commands/init.js +5 -5
- package/dist/src/cli/commands/init.js.map +1 -1
- package/dist/src/cli/helpers/init/external-import.d.ts +3 -1
- package/dist/src/cli/helpers/init/external-import.d.ts.map +1 -1
- package/dist/src/cli/helpers/init/external-import.js +357 -32
- package/dist/src/cli/helpers/init/external-import.js.map +1 -1
- package/dist/src/cli/helpers/init/next-steps.d.ts.map +1 -1
- package/dist/src/cli/helpers/init/next-steps.js +77 -5
- package/dist/src/cli/helpers/init/next-steps.js.map +1 -1
- package/dist/src/cli/helpers/init/smart-reinit.d.ts +2 -0
- package/dist/src/cli/helpers/init/smart-reinit.d.ts.map +1 -1
- package/dist/src/cli/helpers/init/smart-reinit.js +371 -36
- package/dist/src/cli/helpers/init/smart-reinit.js.map +1 -1
- package/dist/src/cli/helpers/init/testing-config.d.ts +5 -2
- package/dist/src/cli/helpers/init/testing-config.d.ts.map +1 -1
- package/dist/src/cli/helpers/init/testing-config.js +322 -31
- package/dist/src/cli/helpers/init/testing-config.js.map +1 -1
- package/dist/src/core/qa/qa-runner.js +7 -10
- package/dist/src/core/qa/qa-runner.js.map +1 -1
- package/dist/src/importers/item-converter.d.ts.map +1 -1
- package/dist/src/importers/item-converter.js +18 -9
- package/dist/src/importers/item-converter.js.map +1 -1
- package/dist/src/living-docs/fs-id-allocator.d.ts +3 -2
- package/dist/src/living-docs/fs-id-allocator.d.ts.map +1 -1
- package/dist/src/living-docs/fs-id-allocator.js +12 -6
- package/dist/src/living-docs/fs-id-allocator.js.map +1 -1
- package/dist/src/sync/sync-metadata.d.ts.map +1 -1
- package/dist/src/sync/sync-metadata.js +31 -2
- package/dist/src/sync/sync-metadata.js.map +1 -1
- package/package.json +1 -1
- package/plugins/specweave/agents/AGENTS-INDEX.md +9 -16
- package/plugins/specweave/commands/specweave-qa.md +9 -9
- package/plugins/specweave/commands/specweave-save.md +531 -193
- package/plugins/specweave/commands/specweave-validate.md +8 -7
- package/plugins/specweave/skills/increment-quality-judge-v2/SKILL.md +18 -0
- package/plugins/specweave-github/hooks/.specweave/logs/hooks-debug.log +24 -0
- package/plugins/specweave-release/hooks/.specweave/logs/dora-tracking.log +36 -0
- package/plugins/specweave/agents/increment-quality-judge-v2/AGENT.md +0 -705
|
@@ -232,16 +232,17 @@ Choice: _
|
|
|
232
232
|
|
|
233
233
|
### Step 4: Run AI Quality Assessment (If Approved)
|
|
234
234
|
|
|
235
|
-
**IMPORTANT**:
|
|
235
|
+
**IMPORTANT**: Use the `increment-quality-judge-v2` **skill** (auto-activated) or CLI command:
|
|
236
236
|
|
|
237
|
-
```
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
237
|
+
```bash
|
|
238
|
+
# Preferred: Use CLI command directly
|
|
239
|
+
specweave qa 0001 --pre
|
|
240
|
+
|
|
241
|
+
# The skill auto-activates when assessing quality
|
|
242
|
+
# DO NOT spawn agents - use CLI instead
|
|
242
243
|
```
|
|
243
244
|
|
|
244
|
-
|
|
245
|
+
Assessment parameters:
|
|
245
246
|
- increment_id: "0001"
|
|
246
247
|
- files: ["spec.md", "plan.md", "tests.md"]
|
|
247
248
|
- dimensions: ["clarity", "testability", "completeness", "feasibility", "maintainability", "edge_cases"]
|
|
@@ -10,6 +10,24 @@ Risk Assessment + Quality Gate Decisions
|
|
|
10
10
|
|
|
11
11
|
AI-powered quality assessment with BMAD-pattern risk scoring and formal quality gate decisions (PASS/CONCERNS/FAIL).
|
|
12
12
|
|
|
13
|
+
## IMPORTANT: This is a SKILL (Not an Agent)
|
|
14
|
+
|
|
15
|
+
**DO NOT try to spawn this as an agent via Task tool.**
|
|
16
|
+
|
|
17
|
+
This is a **skill** that auto-activates when you discuss quality assessment. To run quality assessment:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
# Use the CLI command directly
|
|
21
|
+
specweave qa 0001 --pre
|
|
22
|
+
|
|
23
|
+
# Or use the slash command
|
|
24
|
+
/specweave:qa 0001
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
The skill provides guidance and documentation. The CLI handles execution.
|
|
28
|
+
|
|
29
|
+
**Why no agent?** Having both a skill and agent with the same name (`increment-quality-judge-v2`) caused Claude to incorrectly construct agent type names. The skill-only approach eliminates this confusion.
|
|
30
|
+
|
|
13
31
|
## What's New in v2.0
|
|
14
32
|
|
|
15
33
|
1. **Risk Assessment Dimension** - Probability × Impact scoring (0-10 scale, BMAD pattern)
|
|
@@ -1138,3 +1138,27 @@
|
|
|
1138
1138
|
[Tue Nov 25 13:22:41 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
1139
1139
|
[Tue Nov 25 13:22:41 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
1140
1140
|
[Tue Nov 25 13:22:41 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
1141
|
+
[Tue Nov 25 17:51:11 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
1142
|
+
[Tue Nov 25 17:51:11 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
1143
|
+
[Tue Nov 25 17:51:11 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
1144
|
+
[Tue Nov 25 17:51:11 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
1145
|
+
[Tue Nov 25 17:51:11 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
1146
|
+
[Tue Nov 25 17:51:11 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
1147
|
+
[Wed Nov 26 01:25:03 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
1148
|
+
[Wed Nov 26 01:25:03 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
1149
|
+
[Wed Nov 26 01:25:03 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
1150
|
+
[Wed Nov 26 01:25:03 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
1151
|
+
[Wed Nov 26 01:25:04 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
1152
|
+
[Wed Nov 26 01:25:04 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
1153
|
+
[Wed Nov 26 01:27:32 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
1154
|
+
[Wed Nov 26 01:27:32 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
1155
|
+
[Wed Nov 26 01:27:32 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
1156
|
+
[Wed Nov 26 01:27:32 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
1157
|
+
[Wed Nov 26 01:27:32 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
1158
|
+
[Wed Nov 26 01:27:32 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
1159
|
+
[Wed Nov 26 01:29:07 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
1160
|
+
[Wed Nov 26 01:29:07 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
1161
|
+
[Wed Nov 26 01:29:07 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
1162
|
+
[Wed Nov 26 01:29:07 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
1163
|
+
[Wed Nov 26 01:29:07 EST 2025] [GitHub] 🔗 GitHub sync hook fired
|
|
1164
|
+
[Wed Nov 26 01:29:07 EST 2025] [GitHub] ⚠️ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
|
|
@@ -1069,3 +1069,39 @@
|
|
|
1069
1069
|
[2025-11-25 13:22:41] 🎯 Post-Increment-Completion Hook Triggered
|
|
1070
1070
|
[2025-11-25 13:22:41] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
1071
1071
|
[2025-11-25 13:22:41] Run: npm run build
|
|
1072
|
+
[2025-11-25 17:51:11] 🎯 Post-Increment-Completion Hook Triggered
|
|
1073
|
+
[2025-11-25 17:51:11] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
1074
|
+
[2025-11-25 17:51:11] Run: npm run build
|
|
1075
|
+
[2025-11-25 17:51:11] 🎯 Post-Increment-Completion Hook Triggered
|
|
1076
|
+
[2025-11-25 17:51:11] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
1077
|
+
[2025-11-25 17:51:11] Run: npm run build
|
|
1078
|
+
[2025-11-25 17:51:12] 🎯 Post-Increment-Completion Hook Triggered
|
|
1079
|
+
[2025-11-25 17:51:12] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
1080
|
+
[2025-11-25 17:51:12] Run: npm run build
|
|
1081
|
+
[2025-11-26 01:25:03] 🎯 Post-Increment-Completion Hook Triggered
|
|
1082
|
+
[2025-11-26 01:25:03] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
1083
|
+
[2025-11-26 01:25:03] Run: npm run build
|
|
1084
|
+
[2025-11-26 01:25:03] 🎯 Post-Increment-Completion Hook Triggered
|
|
1085
|
+
[2025-11-26 01:25:03] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
1086
|
+
[2025-11-26 01:25:03] Run: npm run build
|
|
1087
|
+
[2025-11-26 01:25:04] 🎯 Post-Increment-Completion Hook Triggered
|
|
1088
|
+
[2025-11-26 01:25:04] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
1089
|
+
[2025-11-26 01:25:04] Run: npm run build
|
|
1090
|
+
[2025-11-26 01:27:32] 🎯 Post-Increment-Completion Hook Triggered
|
|
1091
|
+
[2025-11-26 01:27:32] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
1092
|
+
[2025-11-26 01:27:32] Run: npm run build
|
|
1093
|
+
[2025-11-26 01:27:32] 🎯 Post-Increment-Completion Hook Triggered
|
|
1094
|
+
[2025-11-26 01:27:32] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
1095
|
+
[2025-11-26 01:27:32] Run: npm run build
|
|
1096
|
+
[2025-11-26 01:27:32] 🎯 Post-Increment-Completion Hook Triggered
|
|
1097
|
+
[2025-11-26 01:27:32] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
1098
|
+
[2025-11-26 01:27:32] Run: npm run build
|
|
1099
|
+
[2025-11-26 01:29:07] 🎯 Post-Increment-Completion Hook Triggered
|
|
1100
|
+
[2025-11-26 01:29:07] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
1101
|
+
[2025-11-26 01:29:07] Run: npm run build
|
|
1102
|
+
[2025-11-26 01:29:07] 🎯 Post-Increment-Completion Hook Triggered
|
|
1103
|
+
[2025-11-26 01:29:07] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
1104
|
+
[2025-11-26 01:29:07] Run: npm run build
|
|
1105
|
+
[2025-11-26 01:29:07] 🎯 Post-Increment-Completion Hook Triggered
|
|
1106
|
+
[2025-11-26 01:29:07] ⚠️ DORA calculator not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-release/hooks/dist/src/metrics/dora-calculator.js
|
|
1107
|
+
[2025-11-26 01:29:07] Run: npm run build
|