@gencode/web 0.6.7 → 0.6.9

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 +41 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,46 @@
1
1
  # @gencode/web
2
2
 
3
+ ## 0.6.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 30e7078: Improve `before_tool_call` HITL resumption so the Agent continues directly from the persisted tool-call history after approval, denial, cancellation, timeout, or execution failure.
8
+
9
+ - Resume outcomes are retained with the tool result and supplied to the model as part of the restored conversation context.
10
+ - Approved tools are not prompted to run again after their checkpoint call has already executed.
11
+ - Resume input, callback, and websocket envelope formats remain unchanged.
12
+
13
+ - 30e7078: Keep HITL pause and audit files in the session store selected for the run.
14
+
15
+ Runs configured with `--session-store tasks` now persist `pending-hitl.json` and `hitl-history.jsonl` under `.aimax/tasks/<sessionId>/`, so later `resume` and `cancel` commands can find the paused state in the same store. Subagent HITL requests continue to bubble to the parent session root.
16
+
17
+ - 58acb1d: When `aimax run` or `aimax resume` receives `--project-dir <path>`, AIMax now automatically loads `<path>/AGENTS.md` when that file exists and injects it into the runtime system prompt as a separate project instructions section. The project file applies only to work in the current repository and does not replace the user-level `.aimax/AGENTS.md` identity and collaboration rules.
18
+ - Updated dependencies [30e7078]
19
+ - Updated dependencies [30e7078]
20
+ - Updated dependencies [58acb1d]
21
+ - Updated dependencies [2ccd4ba]
22
+ - @gencode/console@0.6.9
23
+ - @gencode/shared@0.7.0
24
+
25
+ ## 0.6.8
26
+
27
+ ### Patch Changes
28
+
29
+ - aae9c3f: Make resumed `before_tool_call` approvals continue through a normal Agent response across agents, CLI, plugin integrations, console, and web consumers.
30
+
31
+ - Approved calls now execute the exact checkpoint tool call once, then the model receives the persisted tool result and produces the final response.
32
+ - Denied, cancelled, or timed-out calls are skipped and still return a model-generated explanation.
33
+ - Existing resume input, callback, and websocket envelope formats are unchanged; approved streams include tool execution events before the final text.
34
+
35
+ - 1dadb7f: `aimax run` 现在支持按单次任务配置模型采样参数:`--temperature`、`--top-k`、`--top-p`,也可以通过 `AIMAX_TEMPERATURE`、`AIMAX_TOP_K`、`AIMAX_TOP_P` 设置默认值。`aimax-server` 的 `POST /run` 同步支持在 `run.temperature`、`run.topK`、`run.topP` 中传入这些值;未配置时不会向模型请求额外注入采样字段。
36
+ - 18c5760: 运行日志现在会记录模型首次返回响应的时间点,以及每个插件 hook handler 执行前、执行完成或失败的状态。通过 CLI 运行时,这些日志会继续写入本次消息对应的 `.aimax/<session-store>/<session-id>/logs/<message-id>/app.log`,便于排查模型首包延迟和插件 hook 耗时。
37
+ - Updated dependencies [aae9c3f]
38
+ - Updated dependencies [1dadb7f]
39
+ - Updated dependencies [18c5760]
40
+ - Updated dependencies [2c7e63a]
41
+ - @gencode/console@0.6.8
42
+ - @gencode/shared@0.6.2
43
+
3
44
  ## 0.6.7
4
45
 
5
46
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/web",
3
- "version": "0.6.7",
3
+ "version": "0.6.9",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -13,8 +13,8 @@
13
13
  "CHANGELOG.md"
14
14
  ],
15
15
  "dependencies": {
16
- "@gencode/console": "0.6.7",
17
- "@gencode/shared": "0.6.1"
16
+ "@gencode/console": "0.6.9",
17
+ "@gencode/shared": "0.7.0"
18
18
  },
19
19
  "devDependencies": {},
20
20
  "scripts": {