sillyspec 3.8.4 → 3.8.5
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.
- package/package.json +1 -1
- package/src/stages/execute.js +2 -1
- package/src/stages/plan.js +1 -1
package/package.json
CHANGED
package/src/stages/execute.js
CHANGED
|
@@ -184,7 +184,8 @@ function buildWavePrompt(wave, waveIndex, changeDir) {
|
|
|
184
184
|
if (t.steps) s += `\n 步骤: ${t.steps}`
|
|
185
185
|
return s
|
|
186
186
|
}).join('\n')
|
|
187
|
-
const
|
|
187
|
+
const { join } = path
|
|
188
|
+
const hasTaskBlueprints = changeDir && existsSync(join(changeDir, 'tasks'))
|
|
188
189
|
const taskBlueprintRule = hasTaskBlueprints
|
|
189
190
|
? '每个任务有独立的 task-N.md 蓝图——只做蓝图里写的事,不要实现蓝图之外的功能。如果蓝图有问题,**停下来反馈**,不要自己改。问题归因:实现困难 → task 蓝图没写好 → plan 没做好 → design 有缺陷。'
|
|
190
191
|
: '如果发现 plan 不合理,**停下来反馈**,不要自己改方案。问题归因:实现困难 → plan 没做好 → design 有缺陷。'
|
package/src/stages/plan.js
CHANGED