speccrew 0.5.2 → 0.5.3
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.
|
@@ -355,9 +355,9 @@ If only **1 Feature** in registry:
|
|
|
355
355
|
|
|
356
356
|
If **2+ Features** in registry:
|
|
357
357
|
|
|
358
|
-
1. **Initialize
|
|
358
|
+
1. **Initialize DISPATCH-PROGRESS.json**:
|
|
359
359
|
```bash
|
|
360
|
-
node speccrew-workspace/scripts/update-progress.js init
|
|
360
|
+
node speccrew-workspace/scripts/update-progress.js init --file speccrew-workspace/iterations/{iteration}/02.feature-design/DISPATCH-PROGRESS.json --stage 02_feature_design_analyze --tasks "[{\"id\":\"F-CRM-01\"},{\"id\":\"F-CRM-02\"},{\"id\":\"F-CRM-03\"}]"
|
|
361
361
|
```
|
|
362
362
|
|
|
363
363
|
2. **Dispatch Workers** (batch of 6):
|
|
@@ -408,9 +408,9 @@ If only **1 Feature** in registry:
|
|
|
408
408
|
|
|
409
409
|
#### Multiple Features (Worker Dispatch)
|
|
410
410
|
|
|
411
|
-
1. **
|
|
411
|
+
1. **Initialize DISPATCH-PROGRESS.json for Design & Generate stage**:
|
|
412
412
|
```bash
|
|
413
|
-
node speccrew-workspace/scripts/update-progress.js
|
|
413
|
+
node speccrew-workspace/scripts/update-progress.js init --file speccrew-workspace/iterations/{iteration}/02.feature-design/DISPATCH-PROGRESS.json --stage 02_feature_design_spec --tasks "[{\"id\":\"F-CRM-01\"},{\"id\":\"F-CRM-02\"},{\"id\":\"F-CRM-03\"}]"
|
|
414
414
|
```
|
|
415
415
|
|
|
416
416
|
2. **Dispatch Workers** (batch of 6):
|
|
@@ -470,7 +470,7 @@ If only **1 Feature** in registry:
|
|
|
470
470
|
- If user requests modification for specific Feature → Re-dispatch design worker for that Feature only
|
|
471
471
|
- If user confirms → Update `.checkpoints.json`:
|
|
472
472
|
```bash
|
|
473
|
-
node speccrew-workspace/scripts/update-progress.js write-checkpoint --file speccrew-workspace/iterations/{iteration}/02.feature-design/.checkpoints.json --checkpoint feature_spec_review --passed true
|
|
473
|
+
node speccrew-workspace/scripts/update-progress.js write-checkpoint --file speccrew-workspace/iterations/{iteration}/02.feature-design/.checkpoints.json --stage 02_feature_design --checkpoint feature_spec_review --passed true
|
|
474
474
|
```
|
|
475
475
|
|
|
476
476
|
---
|
|
@@ -483,7 +483,7 @@ When any worker (analyze/design) reports failure:
|
|
|
483
483
|
|
|
484
484
|
2. **Update status**: Set the failed feature's status in `.checkpoints.json`:
|
|
485
485
|
```bash
|
|
486
|
-
node speccrew-workspace/scripts/update-progress.js update-task --file speccrew-workspace/iterations/{iteration}/02.feature-design/DISPATCH-PROGRESS.json --task {feature_id} --status failed --error "[{phase}] {error_message}"
|
|
486
|
+
node speccrew-workspace/scripts/update-progress.js update-task --file speccrew-workspace/iterations/{iteration}/02.feature-design/DISPATCH-PROGRESS.json --task-id {feature_id} --status failed --error "[{phase}] {error_message}"
|
|
487
487
|
```
|
|
488
488
|
|
|
489
489
|
3. **Continue batch**: Do NOT stop entire batch for single failure. Complete remaining workers.
|
|
@@ -144,6 +144,7 @@ After user confirms (or if skipped):
|
|
|
144
144
|
```bash
|
|
145
145
|
node speccrew-workspace/scripts/update-progress.js write-checkpoint \
|
|
146
146
|
--file speccrew-workspace/iterations/{iteration_id}/02.feature-design/.checkpoints.json \
|
|
147
|
+
--stage 02_feature_design \
|
|
147
148
|
--checkpoint function_decomposition \
|
|
148
149
|
--passed true
|
|
149
150
|
```
|
|
@@ -325,6 +325,7 @@ After user confirms (or if skipped):
|
|
|
325
325
|
```bash
|
|
326
326
|
node speccrew-workspace/scripts/update-progress.js write-checkpoint \
|
|
327
327
|
--file speccrew-workspace/iterations/{iteration_id}/02.feature-design/.checkpoints.json \
|
|
328
|
+
--stage 02_feature_design \
|
|
328
329
|
--checkpoint feature_design_review \
|
|
329
330
|
--passed true
|
|
330
331
|
```
|
|
@@ -414,6 +415,7 @@ Set final checkpoint status:
|
|
|
414
415
|
```bash
|
|
415
416
|
node speccrew-workspace/scripts/update-progress.js write-checkpoint \
|
|
416
417
|
--file speccrew-workspace/iterations/{iteration_id}/02.feature-design/.checkpoints.json \
|
|
418
|
+
--stage 02_feature_design \
|
|
417
419
|
--checkpoint feature_spec_review \
|
|
418
420
|
--passed true
|
|
419
421
|
```
|