sillyspec 3.17.14 → 3.17.15

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/run.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sillyspec",
3
- "version": "3.17.14",
3
+ "version": "3.17.15",
4
4
  "description": "SillySpec CLI — 流程状态机,让 AI 严格按步骤来",
5
5
  "icon": "logo.jpg",
6
6
  "homepage": "https://sillyspec.ppdmq.top/",
package/src/run.js CHANGED
@@ -1864,7 +1864,7 @@ async function completeStep(pm, progress, stageName, cwd, outputText, inputText
1864
1864
  }
1865
1865
  // quick 阶段完成前强制检查 quicklog 是否创建
1866
1866
  if (stageName === 'quick') {
1867
- const quicklogDir = join(specBase, '.sillyspec', 'quicklog')
1867
+ const quicklogDir = join(specBase, 'quicklog')
1868
1868
  const hasQuicklog = existsSync(quicklogDir) && readdirSync(quicklogDir).some(f => f.endsWith('.md') && f.startsWith('QUICKLOG'))
1869
1869
  if (!hasQuicklog) {
1870
1870
  console.error(`\n❌ quick 阶段完成校验失败:未检测到 QUICKLOG 记录文件。`)