@riconext/hermes-repo 1.2.3 → 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 +12 -0
- package/README.md +2 -2
- package/dist/cli.js +165 -107
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.2.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f043fb9: 将 debug 日志迁移到 .memory/logs 目录,并按 capture、flush、consolidate 分文件记录。
|
|
8
|
+
|
|
9
|
+
## 1.2.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 089eb55: 兼容 LLM 返回 path 和 YAML frontmatter 的知识文件格式,避免有效知识文件在 flush 时被过滤丢弃。
|
|
14
|
+
|
|
3
15
|
## 1.2.3
|
|
4
16
|
|
|
5
17
|
### 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/
|
|
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/
|
|
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
|
|