@gencode/web 0.6.2 → 0.6.3

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/CHANGELOG.md +14 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @gencode/web
2
2
 
3
+ ## 0.6.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 0e09aac: 所有发往模型网关的请求现在都会携带 `X-Model-Id` header,其值为该请求最终实际使用的模型名,包括主 Agent、子 Agent、插件、摘要和主题拆分等调用路径;无需新增配置。
8
+ - f7335c1: Skill 的高风险命令现在必须在 `SKILL.md` 同级的 `actions.yml` 中声明,并通过 `skill_action_run` 执行;运行时不再向 Agent 提供可直接审批任意命令的 `guarded_exec` 工具。已有 skill 如果直接调用该工具,需要先把命令、输入校验和 `hitl` 策略迁移到 `actions.yml`。
9
+ - e691d24: HITL 暂停且当前轮没有模型文本时,返回内容现在直接展示确认请求的标题和说明,不再添加 `[HITL paused]` 前缀;暂停状态及恢复协议保持不变。
10
+ - ed68c0c: Topic-filtered conversations now compact oversized selected topics without replacing unrelated session history. Topic compaction is stored in `.aimax/sessions/<sessionId>/topic-segments.json`, while `transcript.jsonl` remains complete; ordinary conversations and `/compact` keep their existing global compaction behavior. Automatic compaction also reserves context for the base system prompt and visible tool schemas before deciding how much history to retain.
11
+ - Updated dependencies [0e09aac]
12
+ - Updated dependencies [f7335c1]
13
+ - Updated dependencies [e691d24]
14
+ - Updated dependencies [ed68c0c]
15
+ - @gencode/console@0.6.3
16
+
3
17
  ## 0.6.2
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/web",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -13,7 +13,7 @@
13
13
  "CHANGELOG.md"
14
14
  ],
15
15
  "dependencies": {
16
- "@gencode/console": "0.6.2",
16
+ "@gencode/console": "0.6.3",
17
17
  "@gencode/shared": "0.6.0"
18
18
  },
19
19
  "devDependencies": {},