bms-speckit-plugin 3.2.0 → 3.3.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 +21 -35
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bms-speckit-plugin",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.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
|
@@ -8,58 +8,44 @@ allowed-tools: Read, Write, Edit, Bash, Glob, Grep, Skill, Agent, WebSearch, Web
|
|
|
8
8
|
|
|
9
9
|
# BMS Speckit — Automated Development Pipeline
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
Execute the following steps in exact order. Do NOT ask for confirmation between steps. Do NOT skip any step.
|
|
12
12
|
|
|
13
|
-
## Step 1
|
|
13
|
+
## Step 1
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
/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.
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
## Step 2
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
Make sure that CLAUDE.md complies with the constitution above. Update CLAUDE.md if needed.
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
## Step 3
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
/speckit.specify $ARGUMENTS
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
## Step 4
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
/speckit.plan
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
## Step 5
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
/compact
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
## Step 6
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
/speckit.tasks
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
## Step 7
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
/speckit.analyze
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
## Step 8
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
Commit and push code.
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
## Step 9
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
/compact
|
|
48
48
|
|
|
49
|
-
|
|
50
|
-
/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
|
|
51
|
-
```
|
|
49
|
+
## Step 10
|
|
52
50
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
Output a final summary:
|
|
56
|
-
- What was built
|
|
57
|
-
- Total tests passing
|
|
58
|
-
- Files created/modified
|
|
59
|
-
- How to run the application
|
|
60
|
-
|
|
61
|
-
## CRITICAL RULES
|
|
62
|
-
- Do NOT ask for confirmation between steps
|
|
63
|
-
- Each step calls the speckit skill directly
|
|
64
|
-
- Use MCP tools if available (bms-session for database access)
|
|
65
|
-
- Push code if git remote is configured
|
|
51
|
+
/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
|