speccrew 0.7.50 → 0.7.51
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.
|
@@ -93,6 +93,14 @@ This skill MUST execute tasks continuously without unnecessary interruptions.
|
|
|
93
93
|
3. Unrecoverable errors that prevent further progress
|
|
94
94
|
4. Security-sensitive operations (e.g., deleting existing files)
|
|
95
95
|
|
|
96
|
+
### Phase 3 FORBIDDEN Actions
|
|
97
|
+
|
|
98
|
+
- DO NOT inline-call speccrew-sd-framework-evaluate skill
|
|
99
|
+
- DO NOT read feature spec files yourself for framework evaluation
|
|
100
|
+
- DO NOT create temporary scripts for batch file analysis
|
|
101
|
+
- DO NOT generate framework-evaluation.md as fallback if worker fails
|
|
102
|
+
- Worker dispatch failure = ABORT (report error, do NOT retry with inline execution)
|
|
103
|
+
|
|
96
104
|
### HARD STOP Checkpoints
|
|
97
105
|
|
|
98
106
|
This workflow has **mandatory HARD STOP** checkpoints at:
|
|
@@ -163,6 +163,13 @@
|
|
|
163
163
|
|
|
164
164
|
<!-- ========== Phase 3: Framework Evaluation (HARD STOP) ========== -->
|
|
165
165
|
<sequence name="Phase 3: Framework Evaluation">
|
|
166
|
+
<block type="rule" id="P3-R0" level="forbidden" desc="Phase 3 Worker Dispatch Enforcement">
|
|
167
|
+
<field name="text">FORBIDDEN: Do NOT inline-call or directly invoke speccrew-sd-framework-evaluate skill</field>
|
|
168
|
+
<field name="text">FORBIDDEN: Do NOT create scripts or read feature files yourself for framework evaluation</field>
|
|
169
|
+
<field name="text">MANDATORY: Framework evaluation MUST be delegated to worker agent via block P3-B1</field>
|
|
170
|
+
<field name="text">If worker dispatch fails, ABORT — do NOT fallback to inline execution</field>
|
|
171
|
+
</block>
|
|
172
|
+
|
|
166
173
|
<block type="rule" id="P3-R1" level="mandatory" desc="Worker Dispatch Rule">
|
|
167
174
|
<field name="text">Framework evaluation MUST be dispatched to a single speccrew-task-worker agent</field>
|
|
168
175
|
<field name="text">Agent MUST NOT perform capability gap analysis or framework recommendations itself</field>
|
|
@@ -172,9 +179,10 @@
|
|
|
172
179
|
<!-- Step 3.1: Dispatch Worker Agent for Framework Evaluation -->
|
|
173
180
|
<block type="task" id="P3-B1" action="dispatch-to-worker" status="pending"
|
|
174
181
|
desc="Dispatch single worker agent for framework evaluation">
|
|
175
|
-
<field name="
|
|
182
|
+
<field name="agent">speccrew-task-worker</field>
|
|
183
|
+
<field name="skill">speccrew-sd-framework-evaluate</field>
|
|
176
184
|
<field name="max_concurrent">1</field>
|
|
177
|
-
<field name="skill_path"
|
|
185
|
+
<field name="skill_path">${workspace_path}/.speccrew/skills/speccrew-sd-framework-evaluate/SKILL.md</field>
|
|
178
186
|
<field name="context">
|
|
179
187
|
workspace_path: ${workspace_path},
|
|
180
188
|
iteration_path: ${iterations_dir}/${current_iteration},
|
|
@@ -183,6 +191,7 @@
|
|
|
183
191
|
techs_knowledge_paths: ${dispatch_params.techs_knowledge_paths},
|
|
184
192
|
output_path: ${iterations_dir}/${current_iteration}/03.system-design/framework-evaluation.md
|
|
185
193
|
</field>
|
|
194
|
+
<field name="note">Worker receives ALL context above and generates framework-evaluation.md. Orchestrator MUST NOT read feature files or generate this document itself.</field>
|
|
186
195
|
</block>
|
|
187
196
|
|
|
188
197
|
<!-- Step 3.2: Wait for Worker Completion -->
|