@gencode/web 0.6.6 → 0.6.8

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 +46 -2
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,14 +1,58 @@
1
1
  # @gencode/web
2
2
 
3
+ ## 0.6.8
4
+
5
+ ### Patch Changes
6
+
7
+ - aae9c3f: Make resumed `before_tool_call` approvals continue through a normal Agent response across agents, CLI, plugin integrations, console, and web consumers.
8
+
9
+ - Approved calls now execute the exact checkpoint tool call once, then the model receives the persisted tool result and produces the final response.
10
+ - Denied, cancelled, or timed-out calls are skipped and still return a model-generated explanation.
11
+ - Existing resume input, callback, and websocket envelope formats are unchanged; approved streams include tool execution events before the final text.
12
+
13
+ - 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` 中传入这些值;未配置时不会向模型请求额外注入采样字段。
14
+ - 18c5760: 运行日志现在会记录模型首次返回响应的时间点,以及每个插件 hook handler 执行前、执行完成或失败的状态。通过 CLI 运行时,这些日志会继续写入本次消息对应的 `.aimax/<session-store>/<session-id>/logs/<message-id>/app.log`,便于排查模型首包延迟和插件 hook 耗时。
15
+ - Updated dependencies [aae9c3f]
16
+ - Updated dependencies [1dadb7f]
17
+ - Updated dependencies [18c5760]
18
+ - Updated dependencies [2c7e63a]
19
+ - @gencode/console@0.6.8
20
+ - @gencode/shared@0.6.2
21
+
22
+ ## 0.6.7
23
+
24
+ ### Patch Changes
25
+
26
+ - 2ab7f63: Make Thread Goal completion reliable across agents and all applications that consume agent runs.
27
+
28
+ - Goal completion and blocking now use separate model tools with required completion evidence or blocking reasons.
29
+ - Repeated invalid terminal submissions stop after a bounded number of equivalent failures instead of looping indefinitely.
30
+ - Final responses report a persistence failure when delivery work exists but the Goal workflow has not reached `complete`.
31
+ - Administrators can recover an individual historical session through the exported Goal recovery API or the `run-goal-recovery` command without editing Goal files directly.
32
+
33
+ - 2ab7f63: Improve `/goal` task planning consistency across agents, CLI, console, and web consumers.
34
+
35
+ - Complex natural-language objectives can initialize 2–5 persistent execution tasks with acceptance criteria.
36
+ - Vague objectives still start in clarify; models commit plans through the new public `goal_plan` tool instead of overloading `update_task`.
37
+ - Clarify gate now covers the full run lifecycle (first turn, announce, continuations) until a later turn observes committed execution state.
38
+ - Terminal `goal complete` rejects clarify-only or unfinished-clarify workflows.
39
+
40
+ - Updated dependencies [2ab7f63]
41
+ - Updated dependencies [2ab7f63]
42
+ - @gencode/console@0.6.7
43
+
3
44
  ## 0.6.6
4
45
 
5
46
  ### Patch Changes
6
47
 
7
48
  - cc36dad: Improve URL artifact reporting for online documents and shared resources. When an agent creates or publishes a user-openable online resource and shows a link such as a document link, view link, share link, or download link in the final response, the runtime prompt now more explicitly instructs the model to include the same URL in the `<aimax_artifacts>` declaration so backend `done` payloads and transcript artifact metadata can surface it reliably.
8
- - 0744f2d: 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.
49
+ - 8170e03: Support custom HITL approving choice IDs for before-tool safety gates. `HitlChoiceInput` now accepts an optional `approvingChoiceIds` field that declares which choice IDs mean "approve / continue". When resuming a paused run, both guarded operations (`skill_action_run`) and generic non-HITL `before_tool` resumes honor this list. Existing requests that omit the field continue to treat `"approve"` as the only approving choice, preserving backward compatibility.
50
+ - 0d0e504: Improve artifact reporting for Wizard Wiki pages. When the `wizard-wiki` skill creates a page through `scripts/create_page.py` or updates one through `scripts/edit_page.py` and the script response includes a page URL, AIMax now returns that URL in the run artifacts payload as a user-openable Wiki page artifact, distinguishing newly created pages from modified pages.
9
51
  - Updated dependencies [cc36dad]
10
- - Updated dependencies [0744f2d]
52
+ - Updated dependencies [8170e03]
53
+ - Updated dependencies [0d0e504]
11
54
  - @gencode/console@0.6.6
55
+ - @gencode/shared@0.6.1
12
56
 
13
57
  ## 0.6.5
14
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/web",
3
- "version": "0.6.6",
3
+ "version": "0.6.8",
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.6",
17
- "@gencode/shared": "0.6.0"
16
+ "@gencode/console": "0.6.8",
17
+ "@gencode/shared": "0.6.2"
18
18
  },
19
19
  "devDependencies": {},
20
20
  "scripts": {