bms-speckit-plugin 3.6.0 → 3.8.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": "3.6.0",
3
+ "version": "3.8.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/",
@@ -12,30 +12,34 @@ Execute the following steps in exact order. Do NOT ask for confirmation between
12
12
 
13
13
  ## Phase 1: Specification & Planning (run in subagent)
14
14
 
15
- Dispatch a subagent to run Steps 1-7 serially. This keeps the main context window clean for implementation.
15
+ Dispatch a subagent with the following prompt. The subagent MUST use the Skill tool to invoke each speckit skill — do NOT use slash command syntax inside the subagent.
16
16
 
17
- The subagent should execute these steps in order:
17
+ Subagent prompt:
18
18
 
19
- 1. `/speckit.constitution` Establish and enforce a comprehensive set of engineering principles that prioritize high code quality, strict adherence to Test-Driven Development (TDD) practices, and well-defined testing standards across unit, component, integration, and API levels to ensure system reliability and maintainability; maintain a consistent, user-friendly, and professional user interface aligned with strong user experience (UX) guidelines; optimize application performance through efficient architecture and resource management; enforce disciplined version control practices with frequent, atomic commits to minimize risk and improve traceability; promote the development and reuse of modular components and functions while centralizing business logic to avoid duplication and ensure consistency; provide clear, informative user feedback and progress reporting throughout system interactions; and leverage all available tools, frameworks, and domain-specific expertise to support developers in delivering robust, scalable, and high-quality applications.
19
+ """
20
+ You are running the BMS Speckit specification and planning phase. Execute these steps in order using the Skill tool. Do NOT ask for confirmation.
20
21
 
21
- 2. Make sure that CLAUDE.md complies with the constitution above. Update CLAUDE.md if needed.
22
+ Step 1: Use the Skill tool to invoke "speckit.constitution" with this argument: "Establish and enforce a comprehensive set of engineering principles that prioritize high code quality, strict adherence to Test-Driven Development (TDD) practices, and well-defined testing standards across unit, component, integration, and API levels to ensure system reliability and maintainability; maintain a consistent, user-friendly, and professional user interface aligned with strong user experience (UX) guidelines; optimize application performance through efficient architecture and resource management; enforce disciplined version control practices with frequent, atomic commits to minimize risk and improve traceability; promote the development and reuse of modular components and functions while centralizing business logic to avoid duplication and ensure consistency; provide clear, informative user feedback and progress reporting throughout system interactions; and leverage all available tools, frameworks, and domain-specific expertise to support developers in delivering robust, scalable, and high-quality applications."
22
23
 
23
- 3. `/speckit.specify` $ARGUMENTS
24
+ Step 2: Read CLAUDE.md and verify it complies with the constitution in specs/constitution.md. Update CLAUDE.md if needed.
24
25
 
25
- 4. `/speckit.plan`
26
+ Step 3: Use the Skill tool to invoke "speckit.specify" with this argument: "$ARGUMENTS"
26
27
 
27
- 5. `/speckit.tasks`
28
+ Step 4: Use the Skill tool to invoke "speckit.plan"
28
29
 
29
- 6. `/speckit.analyze`
30
+ Step 5: Use the Skill tool to invoke "speckit.tasks"
30
31
 
31
- 7. Commit and push code.
32
+ Step 6: Use the Skill tool to invoke "speckit.analyze"
32
33
 
33
- The subagent should return: feature name, number of tasks created, and the path to tasks.md.
34
+ Step 7: Commit all files and push to remote if configured.
35
+
36
+ After all steps complete, return: the feature name, number of tasks created, and the path to tasks.md.
37
+ """
34
38
 
35
39
  ## Phase 2: Implementation (run in main context)
36
40
 
37
41
  After the subagent completes:
38
42
 
39
- 8. `/compact`
43
+ 8. Run `/compact` to free context window.
40
44
 
41
- 9. `/ralph-loop:ralph-loop "use skill speckit.implement until all tasks in specs/*/tasks.md are finished;do not ask for any confirmation; once all tasks are done, use skill speckit.analyze to recheck and update tasks, accept any recommendations, and output <promise>FINISHED</promise> only after all tasks are completed and revalidated" --completion-promise "FINISHED" --max-iterations 10
45
+ 9. Run: `/ralph-loop:ralph-loop "use the Skill tool to invoke speckit.implement until all tasks in specs/*/tasks.md are finished;do not ask for any confirmation; once all tasks are done, use the Skill tool to invoke speckit.analyze to recheck and update tasks, accept any recommendations, and output <promise>FINISHED</promise> only after all tasks are completed and revalidated" --completion-promise "FINISHED" --max-iterations 10`