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 +1 -1
- package/skills/speckit/SKILL.md +18 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bms-speckit-plugin",
|
|
3
|
-
"version": "2.0
|
|
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/",
|
package/skills/speckit/SKILL.md
CHANGED
|
@@ -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:
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
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
|