@riconext/hermes-repo 1.2.4 → 1.2.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.2.5
4
+
5
+ ### Patch Changes
6
+
7
+ - f043fb9: 将 debug 日志迁移到 .memory/logs 目录,并按 capture、flush、consolidate 分文件记录。
8
+
3
9
  ## 1.2.4
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -309,7 +309,7 @@ npx @riconext/hermes-repo init
309
309
  npx @riconext/hermes-repo capture-llm --flush
310
310
 
311
311
  # 查看 hook / capture 日志
312
- # 在 .memory/config.json 设 "debug": true,然后 tail -f .memory/hermes-debug.log
312
+ # 在 .memory/config.json 设 "debug": true,然后 tail -f .memory/logs/capture.log
313
313
  ```
314
314
 
315
315
  升级成功的 capture 会在 frontmatter 中带 `llmUpgradedAt`。若长期无升级,检查 `enabled`、`apiKey`、网络及 `baseUrl` 是否可达。
@@ -414,7 +414,7 @@ bun install && bun run build && bun run test
414
414
  ```
415
415
 
416
416
  本地调试:`node dist/cli.js --help`
417
- Hook 排障:在 `.memory/config.json` 中设置 `"debug": true`,查看 `.memory/hermes-debug.log`。
417
+ Hook 排障:在 `.memory/config.json` 中设置 `"debug": true`,查看 `.memory/logs/capture.log`、`.memory/logs/flush.log`、`.memory/logs/consolidate.log`。
418
418
 
419
419
  ---
420
420