@riconext/hermes-repo 0.15.0 → 1.0.0

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,45 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 11a1325: Hermes v2 memory architecture.
8
+
9
+ Breaking changes:
10
+
11
+ - Removed the legacy `promote`, `ref`, and `stats` commands.
12
+ - Removed cold-start scan and v1 promotion/reference/skill lifecycle modules.
13
+ - Replaced typed capture folders with session-level raw capture files in `.memory/captures/raw/`.
14
+
15
+ Added:
16
+
17
+ - Session-based capture aggregation with pending/done/stale status tracking.
18
+ - Consolidation flow that writes rules, domains, workflows, decisions, incidents, and MEMORY.md from raw sessions.
19
+ - Two-stage inject behavior that injects MEMORY.md navigation plus required rules.
20
+
21
+ ## 0.15.1
22
+
23
+ ### Patch Changes
24
+
25
+ - 修复 needsLlm 判断逻辑,增强 LLM 升级触发条件
26
+
27
+ **问题修复**:
28
+
29
+ - 新增 toolCalls 判断:工具调用 >= 8 次触发 LLM 升级
30
+ - 新增强信号判断:强信号(约定、决策)直接触发 LLM 升级
31
+ - 新增组合条件:覆盖中等复杂度场景
32
+ - messages >= 10 && toolCalls >= 5
33
+ - medium 信号 && fileChanges >= 2
34
+ - toolCalls >= 5 && fileChanges >= 1
35
+ - 新增综合分数判断:score >= 55 触发升级
36
+
37
+ **改进效果**:
38
+
39
+ - 重要约定和决策会被 LLM 提炼
40
+ - 复杂分析类会话(高工具调用、低文件修改)会被升级
41
+ - 中等复杂度会话不再被忽略
42
+
3
43
  ## 0.15.0
4
44
 
5
45
  ### Minor Changes