@gencode/web 0.4.0 → 0.5.1
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 +25 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @gencode/web
|
|
2
2
|
|
|
3
|
+
## 0.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @gencode/console@0.5.1
|
|
8
|
+
|
|
9
|
+
## 0.5.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 40ba841: Thread Goal now exposes a single minimal `goal` model tool by default. Users still manage goals through CLI commands and Console `/goal`; the model-facing tool is only used to submit terminal `complete` or `blocked` status, while task planning, evidence recording, and workflow repair stay internal to the runtime and no longer appear in the default tool list or session tool snapshots.
|
|
14
|
+
- 32c7221: Agents can now publish lightweight task plans with the built-in `update_task` tool during multi-step work. Agents are instructed to publish an initial plan before substantive multi-step work, advance it after user-visible steps, and, for explicit numbered or bulleted user steps, update the completed step before starting the next one so several completed steps are not batched into one late update. Callback and websocket consumers receive these snapshots as normal progress events with `event.type: "task_updated"`, including `toolCallId`, optional `explanation`, `updatedAt`, and ordered task items whose status is `pending`, `in_progress`, or `completed`. Console displays the latest task snapshot in the event timeline, while dependency-chain entrypoints are versioned so installing the latest CLI, Web bridge, server, or plugin SDK packages picks up the new runtime and shared progress protocol. AIMax does not create a separate task-plan store, so reconnect/resume behavior continues to rely on the transcript and progress stream.
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 132ee84: CRON channel runs now keep their session data, logs, and subagent outputs under `<dataDir>/.aimax/crons/<sessionId>/`. Root CRON logs are written to `<dataDir>/.aimax/crons/<sessionId>/logs/<messageId>/`, and subagents spawned by the CRON run are nested under `<dataDir>/.aimax/crons/<sessionId>/subagents/<childSessionId>/` with their own logs, transcript, context, and tool-results. This prevents CRON diagnostics and subagent files from escaping into the default `.aimax/sessions/` store or into top-level sibling `crons` sessions.
|
|
19
|
+
- 89f1931: AIMax now protects agent runs from stalled plugin hooks. Hooks that only observe lifecycle events, such as session, turn, LLM, agent-end, and memory change notifications, run with a per-plugin timeout and report a plugin diagnostic if one plugin hangs or fails, while the main run continues toward its normal done or error callback. Hooks whose return values control the run, such as prompt, model, tool, context, resource, and compaction hooks, also run with a timeout but surface a clear failure to the run instead of hanging indefinitely.
|
|
20
|
+
- Updated dependencies [32c7221]
|
|
21
|
+
- Updated dependencies [132ee84]
|
|
22
|
+
- Updated dependencies [89f1931]
|
|
23
|
+
- Updated dependencies [40ba841]
|
|
24
|
+
- Updated dependencies [32c7221]
|
|
25
|
+
- @gencode/console@0.5.0
|
|
26
|
+
- @gencode/shared@0.4.0
|
|
27
|
+
|
|
3
28
|
## 0.4.0
|
|
4
29
|
|
|
5
30
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gencode/web",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"CHANGELOG.md"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@gencode/
|
|
17
|
-
"@gencode/
|
|
16
|
+
"@gencode/console": "0.5.1",
|
|
17
|
+
"@gencode/shared": "0.4.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {},
|
|
20
20
|
"scripts": {
|