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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sillyspec",
3
- "version": "3.8.4",
3
+ "version": "3.8.5",
4
4
  "description": "SillySpec CLI — 流程状态机,让 AI 严格按步骤来",
5
5
  "icon": "logo.jpg",
6
6
  "homepage": "https://sillyspec.ppdmq.top/",
@@ -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 hasTaskBlueprints = changeDir && existsSync(join(changeDir, 'tasks'))
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 有缺陷。'
@@ -29,7 +29,7 @@ const fixedPrefix = [
29
29
 
30
30
  ### 操作
31
31
  1. 读取 CODEBASE-OVERVIEW.md + 各子项目上下文
32
- 2. 读取 proposal.md、design.md、requirements.md
32
+ 2. 读取 proposal.md、design.md、requirements.md、tasks.md
33
33
  3. 读取 CONVENTIONS.md、ARCHITECTURE.md、STACK.md
34
34
  4. 读取 local.yaml 获取构建/测试命令
35
35