speccrew 0.7.50 → 0.7.52

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,24 @@ 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 Execution Method — Worker Agent Dispatch
97
+
98
+ **HOW TO DISPATCH**: When executing Phase 3 (Framework Evaluation), you MUST:
99
+ 1. Start a NEW agent session by invoking `/speccrew-task-worker`
100
+ 2. Pass the following context to the worker:
101
+ - skill_path: ${workspace_path}/.speccrew/skills/speccrew-sd-framework-evaluate/SKILL.md
102
+ - workspace_path, iteration_path, feature_spec_paths, api_contract_paths, techs_knowledge_paths, output_path
103
+ 3. Wait for the worker agent to complete
104
+ 4. Verify that framework-evaluation.md has been generated at the output path
105
+ 5. Then proceed to Phase 3 HARD STOP for user confirmation
106
+
107
+ **FORBIDDEN**:
108
+ - DO NOT use the `Skill` tool to invoke speccrew-sd-framework-evaluate yourself
109
+ - DO NOT read feature spec files or tech knowledge files yourself for framework evaluation
110
+ - DO NOT create any scripts for batch file analysis
111
+ - DO NOT generate framework-evaluation.md yourself under any circumstances
112
+ - If worker agent fails, ABORT — do NOT fallback to inline execution
113
+
96
114
  ### HARD STOP Checkpoints
97
115
 
98
116
  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>
@@ -171,10 +178,11 @@
171
178
 
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
- desc="Dispatch single worker agent for framework evaluation">
175
- <field name="worker">speccrew-task-worker</field>
181
+ desc="Dispatch single worker agent for framework evaluation. Use /speccrew-task-worker agent, NOT Skill tool">
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">.speccrew/skills/speccrew-sd-framework-evaluate/SKILL.md</field>
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 -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speccrew",
3
- "version": "0.7.50",
3
+ "version": "0.7.52",
4
4
  "description": "Spec-Driven Development toolkit for AI-powered IDEs",
5
5
  "author": "charlesmu99",
6
6
  "repository": {