sdd-pipeline 1.2.8 → 1.2.9
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.
|
@@ -4,6 +4,23 @@ Standard patterns for spawning subagents during SDD task execution.
|
|
|
4
4
|
|
|
5
5
|
**IMPORTANT:** All subagent names listed here are verified to exist in the Claude Code environment.
|
|
6
6
|
|
|
7
|
+
## IMPORTANT: Claude Code Commands vs CLI Commands
|
|
8
|
+
|
|
9
|
+
**When running SDD pipeline commands in subagents, use Claude Code commands:**
|
|
10
|
+
```bash
|
|
11
|
+
# CORRECT
|
|
12
|
+
claude "/sdd-bmad simple calculator app..."
|
|
13
|
+
claude "/sdd-spec"
|
|
14
|
+
claude "/sdd-tasks"
|
|
15
|
+
claude "/sdd-cook --task T-001"
|
|
16
|
+
|
|
17
|
+
# WRONG
|
|
18
|
+
sdd bmad "simple calculator app..."
|
|
19
|
+
sdd spec
|
|
20
|
+
sdd tasks
|
|
21
|
+
sdd cook --task T-001
|
|
22
|
+
```
|
|
23
|
+
|
|
7
24
|
## Task Tool Pattern
|
|
8
25
|
|
|
9
26
|
```
|
|
@@ -2,6 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
Standard templates for spawning subagents during SDD task execution.
|
|
4
4
|
|
|
5
|
+
## IMPORTANT: Claude Code Commands vs CLI Commands
|
|
6
|
+
|
|
7
|
+
**When running SDD pipeline commands in subagents, use Claude Code commands:**
|
|
8
|
+
```bash
|
|
9
|
+
# CORRECT - Interactive mode with higher confidence
|
|
10
|
+
claude "/sdd-bmad simple calculator app..."
|
|
11
|
+
claude "/sdd-spec"
|
|
12
|
+
claude "/sdd-tasks"
|
|
13
|
+
claude "/sdd-cook --task T-001"
|
|
14
|
+
|
|
15
|
+
# WRONG - Fast CLI mode with lower confidence
|
|
16
|
+
sdd bmad "simple calculator app..."
|
|
17
|
+
sdd spec
|
|
18
|
+
sdd tasks
|
|
19
|
+
sdd cook --task T-001
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
**Why:** Claude Code commands run in interactive mode, which:
|
|
23
|
+
- Generates higher confidence briefs (50-100 vs 5-30)
|
|
24
|
+
- Provides better prompts for SPEC generation
|
|
25
|
+
- Enables the full 9-question BMAD interview
|
|
26
|
+
|
|
5
27
|
## Task Tool Pattern
|
|
6
28
|
|
|
7
29
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sdd-pipeline",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.9",
|
|
4
4
|
"description": "Spec-Driven Development pipeline for Claude Code CLI — transforms raw feature requests into validated, shipped code through a self-correcting converge loop",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"bin": {
|