@gencode/web 0.6.8 → 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 +22 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
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
+
3
25
  ## 0.6.8
4
26
 
5
27
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/web",
3
- "version": "0.6.8",
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.8",
17
- "@gencode/shared": "0.6.2"
16
+ "@gencode/console": "0.6.9",
17
+ "@gencode/shared": "0.7.0"
18
18
  },
19
19
  "devDependencies": {},
20
20
  "scripts": {