bms-speckit-plugin 2.0.1 → 2.1.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bms-speckit-plugin",
3
- "version": "2.0.1",
3
+ "version": "2.1.0",
4
4
  "description": "Single-command automated development pipeline: /bms-speckit takes requirements and runs constitution → specify → plan → tasks → analyze → implement → verify",
5
5
  "files": [
6
6
  ".claude-plugin/",
@@ -88,30 +88,24 @@ All work follows these principles:
88
88
  - Fix any issues found in tasks.md
89
89
  - Commit if changes made
90
90
 
91
- ### Step 6: Implement ALL Tasks
92
- For each pending task, execute the TDD cycle:
93
-
94
- 1. Update task status to `in_progress` in tasks.md
95
- 2. **Write the test first** — meaningful tests that verify behavior
96
- 3. **Run tests verify they FAIL** (if they pass, tests are wrong)
97
- 4. **Write minimal implementation** to make tests pass
98
- 5. **Run ALL tests — verify they PASS** (fix regressions)
99
- 6. **Commit** with the task's commit message
100
- 7. Update task status to `completed` and increment completed count
101
- 8. Move to next pending task
102
-
103
- If a task is blocked, mark as `blocked` with reason and continue.
104
-
105
- ### Step 7: Final Verification
106
- - Run the full test suite
107
- - Review all specification requirements are met
108
- - Check for security issues
109
- - Run the analyze step again on completed code
110
- - If issues found, create new tasks and implement them
111
- - Commit any final fixes
112
-
113
- ### Step 8: Summary Report
114
- Output a final report:
91
+ ### Step 6: Commit and push
92
+ - Commit all spec files created so far
93
+ - Push to remote if configured
94
+ - This preserves work before the long implementation phase
95
+
96
+ ### Step 7: Compact context
97
+ - Run `/compact` to free up context window for implementation
98
+
99
+ ### Step 8: Implement with ralph-loop
100
+ Invoke ralph-loop to implement all tasks automatically:
101
+
102
+ ```
103
+ /ralph-loop:ralph-loop "Read specs/*/tasks.md and implement the next pending task using TDD (write test first, verify fail, implement, verify pass, commit). Update task status to completed after each task. Do not ask for any confirmation. Once all tasks are done, run analysis: read specs/*/tasks.md and verify all tasks are completed, run the full test suite, check all specification requirements are met, fix any issues found, and output <promise>FINISHED</promise> only after all tasks are completed and revalidated" --completion-promise "FINISHED" --max-iterations 10
104
+ ```
105
+
106
+ ### After ralph-loop completes
107
+
108
+ Output a final summary:
115
109
  - What was built
116
110
  - Total tests passing
117
111
  - Files created/modified