bms-speckit-plugin 4.0.0 → 4.0.1
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.
|
@@ -92,10 +92,10 @@ chain_sequence:
|
|
|
92
92
|
skill_id: speckit.specify
|
|
93
93
|
action: execute
|
|
94
94
|
phase: 1
|
|
95
|
-
description: Create feature specification from
|
|
95
|
+
description: Create feature specification from brainstorm output
|
|
96
96
|
timeout_seconds: 300
|
|
97
97
|
input:
|
|
98
|
-
requirement: "
|
|
98
|
+
requirement: "{{step_0_brainstorm.output}}"
|
|
99
99
|
output:
|
|
100
100
|
artifacts: [specs/*/spec.md]
|
|
101
101
|
error_handling:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bms-speckit-plugin",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "Chain-orchestrated development pipeline: /bms-speckit takes requirements and runs brainstorm → constitution → specify → plan → tasks → analyze → implement → verify with per-step error handling",
|
|
5
5
|
"files": [
|
|
6
6
|
".claude-plugin/",
|
|
@@ -14,7 +14,7 @@ Chain blueprint: `blueprints/bms-speckit-pipeline.yaml`
|
|
|
14
14
|
3. On step failure, check the **error policy** before proceeding:
|
|
15
15
|
- `on_failure: stop` → halt the chain and report which step failed
|
|
16
16
|
- `on_failure: continue` → log the failure and proceed to next step
|
|
17
|
-
4. Pass `$ARGUMENTS` (the user's requirement)
|
|
17
|
+
4. Pass `$ARGUMENTS` (the user's requirement) to step 0 (brainstorm). Step 3 (specify) receives the **output from step 0**, not raw `$ARGUMENTS`
|
|
18
18
|
5. Do NOT ask for confirmation between steps
|
|
19
19
|
|
|
20
20
|
---
|
|
@@ -47,7 +47,7 @@ You are running the BMS Speckit specification and planning chain. Execute each s
|
|
|
47
47
|
|
|
48
48
|
### Step 3 — Specify `[on_failure: STOP]`
|
|
49
49
|
- **Skill:** `speckit.specify`
|
|
50
|
-
- **Input:**
|
|
50
|
+
- **Input:** Use the detailed specification output from Step 0 (brainstorm) as the argument
|
|
51
51
|
- **Output:** `specs/*/spec.md`
|
|
52
52
|
- **Timeout:** 300s
|
|
53
53
|
- **Retry:** up to 2 attempts
|