@@ -32,10 +32,10 @@ For detailed architecture and internals, see [ARCHITECTURE.md](ARCHITECTURE.md).
3232specify workflow search
3333
3434# Install a workflow from the catalog
35- specify workflow add sdd-pipeline
35+ specify workflow add speckit
3636
3737# Run a workflow with inputs
38- specify workflow run sdd-pipeline --input feature_name="user-auth"
38+ specify workflow run speckit --input feature_name="user-auth"
3939
4040# Check run status
4141specify workflow status
@@ -44,19 +44,19 @@ specify workflow status
4444specify workflow resume <run_id>
4545
4646# Get detailed workflow info
47- specify workflow info sdd-pipeline
47+ specify workflow info speckit
4848
4949# Remove a workflow
50- specify workflow remove sdd-pipeline
50+ specify workflow remove speckit
5151```
5252
5353## Running Workflows
5454
5555### From an Installed Workflow
5656
5757``` bash
58- specify workflow add sdd-pipeline
59- specify workflow run sdd-pipeline --input feature_name=" user-auth"
58+ specify workflow add speckit
59+ specify workflow run speckit --input feature_name=" user-auth"
6060```
6161
6262### From a Local YAML File
@@ -68,7 +68,7 @@ specify workflow run ./my-workflow.yml --input feature_name="user-auth"
6868### Multiple Inputs
6969
7070``` bash
71- specify workflow run sdd-pipeline \
71+ specify workflow run speckit \
7272 --input feature_name=" user-auth" \
7373 --input scope=" backend-only"
7474```
@@ -193,7 +193,7 @@ Execute steps at least once, then repeat while condition holds:
193193
194194# ## Fan-Out Steps
195195
196- Parallel dispatch over a collection :
196+ Dispatch a step template for each item in a collection (sequential) :
197197
198198` ` ` yaml
199199- id: parallel-impl
@@ -207,7 +207,7 @@ Parallel dispatch over a collection:
207207
208208# ## Fan-In Steps
209209
210- Aggregate results from parallel steps :
210+ Aggregate results from fan-out steps :
211211
212212` ` ` yaml
213213- id: collect
0 commit comments