bms-speckit-plugin 4.1.0 → 4.1.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.
|
@@ -207,7 +207,7 @@ chain_sequence:
|
|
|
207
207
|
description: Execute all tasks with TDD workflow via ralph-loop
|
|
208
208
|
timeout_seconds: 3600
|
|
209
209
|
input:
|
|
210
|
-
tasks_path: "
|
|
210
|
+
tasks_path: "{{step_6_tasks.artifacts}}"
|
|
211
211
|
loop_engine: ralph-loop
|
|
212
212
|
completion_promise: "FINISHED"
|
|
213
213
|
max_iterations: 10
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bms-speckit-plugin",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.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/",
|
|
@@ -92,12 +92,13 @@ After all steps complete, return: the feature name, number of tasks created, and
|
|
|
92
92
|
|
|
93
93
|
### Step 9 — Implement (loop) `[on_failure: CONTINUE | max_retries: 3]`
|
|
94
94
|
- **Engine:** ralph-loop
|
|
95
|
+
- **Input:** Use the **tasks.md path returned by the Phase 1 subagent** (e.g. `specs/my-feature/tasks.md`). Replace `{TASKS_PATH}` below with the actual path.
|
|
95
96
|
- **Completion promise:** `FINISHED`
|
|
96
97
|
- **Max iterations:** 10
|
|
97
98
|
- **Commit strategy:** Atomic commit after each completed task
|
|
98
99
|
- **Action:** Run:
|
|
99
100
|
|
|
100
|
-
`/ralph-loop:ralph-loop "systematically execute speckit.implement via the Skill tool to complete every task defined in
|
|
101
|
+
`/ralph-loop:ralph-loop "systematically execute speckit.implement via the Skill tool to complete every task defined in {TASKS_PATH} with strict adherence to specification requirements, enforce TDD workflow including writing and passing unit, integration, and end-to-end tests before marking any task complete, ensure code quality through linting, static analysis, and consistent architecture with reusable components and centralized business logic, maintain atomic commits after each successful task with clear traceability, avoid requesting confirmation and proceed autonomously, once all tasks are implemented invoke speckit.analyze via the Skill tool to perform a full validation pass, automatically apply all recommended improvements or corrections, re-run all tests to confirm stability and zero regression, and only output <promise>FINISHED</promise> after every task is fully completed, validated, and aligned with production-grade quality standards" --completion-promise "FINISHED" --max-iterations 10`
|
|
101
102
|
|
|
102
103
|
### Step 10 — Verify `[on_failure: STOP]`
|
|
103
104
|
- **Skill:** `speckit.analyze`
|