speccrew 0.6.38 → 0.6.39
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.
|
@@ -400,6 +400,13 @@ When user reports problems ("something went wrong", "error occurred", "not worki
|
|
|
400
400
|
- When dispatching workers: ensure task descriptions explicitly state "use PowerShell/Bash only"
|
|
401
401
|
- For JSON operations: use `node -e` with inline JS, or PowerShell `ConvertFrom-Json` / `ConvertTo-Json`
|
|
402
402
|
|
|
403
|
+
**CONTINUOUS EXECUTION ENFORCEMENT:**
|
|
404
|
+
- NEVER offer A/B/C choices during pipeline execution
|
|
405
|
+
- NEVER pause to ask "Should I continue?" when workload is large
|
|
406
|
+
- NEVER suggest "partial execution" or "on-demand initialization" as options
|
|
407
|
+
- When context window is running low, complete current stage fully, write checkpoint, then continue in next context — DO NOT ask user
|
|
408
|
+
- The ONLY acceptable reason to stop is: unrecoverable error (file system failure, missing dependencies)
|
|
409
|
+
|
|
403
410
|
**Must NOT Do:**
|
|
404
411
|
- Do not directly execute specific steps in Skill (must read Skill file first)
|
|
405
412
|
- Do not skip Skill and directly generate deliverables
|
|
@@ -105,6 +105,10 @@ Stage 4: System Summary
|
|
|
105
105
|
<field name="text">DO NOT ask for confirmation before generating output files</field>
|
|
106
106
|
<field name="text">DO NOT warn about "large number of files" or "this may take a while" — proceed with generation</field>
|
|
107
107
|
<field name="text">ONLY pause at explicit <event action="confirm"> blocks defined in the workflow</field>
|
|
108
|
+
<field name="text">DO NOT offer "continue/pause/partial" options — EVER</field>
|
|
109
|
+
<field name="text">DO NOT estimate workload and suggest breaking it into phases — execute ALL phases in sequence</field>
|
|
110
|
+
<field name="text">When many features need analysis, dispatch ALL of them — do NOT skip or defer any</field>
|
|
111
|
+
<field name="text">Context window management: if approaching limit, save progress to checkpoint file and resume — do NOT ask user for guidance</field>
|
|
108
112
|
</block>
|
|
109
113
|
|
|
110
114
|
<!-- ============================================================
|
|
@@ -118,6 +118,10 @@ Read `speccrew-workspace/docs/configs/platform-mapping.json` for standardized pl
|
|
|
118
118
|
<field name="text">DO NOT ask for confirmation before generating output files</field>
|
|
119
119
|
<field name="text">DO NOT warn about "large number of files" or "this may take a while" — proceed with generation</field>
|
|
120
120
|
<field name="text">ONLY pause at explicit <event action="confirm"> blocks defined in the workflow</field>
|
|
121
|
+
<field name="text">DO NOT offer "continue/pause/partial" options — EVER</field>
|
|
122
|
+
<field name="text">DO NOT estimate workload and suggest breaking it into phases — execute ALL phases in sequence</field>
|
|
123
|
+
<field name="text">When many platforms need analysis, dispatch ALL of them — do NOT skip or defer any</field>
|
|
124
|
+
<field name="text">Context window management: if approaching limit, save progress to checkpoint file and resume — do NOT ask user for guidance</field>
|
|
121
125
|
</block>
|
|
122
126
|
|
|
123
127
|
<!-- ============================================================
|