speccrew 0.6.19 → 0.6.20
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.
|
@@ -1161,14 +1161,14 @@ After each worker completes:
|
|
|
1161
1161
|
```bash
|
|
1162
1162
|
node "{update_progress_script}" update-task \
|
|
1163
1163
|
--file {iterations_dir}/{iteration}/01.product-requirement/DISPATCH-PROGRESS.json \
|
|
1164
|
-
--task {module_key} --status completed
|
|
1164
|
+
--task-id {module_key} --status completed
|
|
1165
1165
|
```
|
|
1166
1166
|
|
|
1167
1167
|
If a worker fails:
|
|
1168
1168
|
```bash
|
|
1169
1169
|
node "{update_progress_script}" update-task \
|
|
1170
1170
|
--file {iterations_dir}/{iteration}/01.product-requirement/DISPATCH-PROGRESS.json \
|
|
1171
|
-
--task {module_key} --status failed --error "{error_message}"
|
|
1171
|
+
--task-id {module_key} --status failed --error "{error_message}"
|
|
1172
1172
|
```
|
|
1173
1173
|
|
|
1174
1174
|
### 5.3 Dispatch Workers
|
|
@@ -1449,12 +1449,14 @@ Now update all checkpoints (user has confirmed):
|
|
|
1449
1449
|
# Update verification_checklist checkpoint
|
|
1450
1450
|
node "{update_progress_script}" write-checkpoint \
|
|
1451
1451
|
--file {iteration_path}/01.product-requirement/.checkpoints.json \
|
|
1452
|
+
--stage 01_prd \
|
|
1452
1453
|
--checkpoint verification_checklist \
|
|
1453
1454
|
--passed true
|
|
1454
1455
|
|
|
1455
1456
|
# Update prd_review checkpoint
|
|
1456
1457
|
node "{update_progress_script}" write-checkpoint \
|
|
1457
1458
|
--file {iteration_path}/01.product-requirement/.checkpoints.json \
|
|
1459
|
+
--stage 01_prd \
|
|
1458
1460
|
--checkpoint prd_review \
|
|
1459
1461
|
--passed true
|
|
1460
1462
|
```
|