@gencode/server 0.3.0 → 0.3.2

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 +25 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @gencode/server
2
2
 
3
+ ## 0.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 6c9d8bb: 修复 `aimax-server` 接收 `/run` 请求后在部分 Node 运行时失败的问题。`aimax export-html --glob` 不再在 CLI 模块加载阶段强依赖 `node:fs/promises` 的 `glob` 导出;当运行环境没有该 Node API 时会自动使用内置文件匹配路径,server 的 one-shot run 可以正常加载并调用 CLI。
8
+ - 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.
9
+ - 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.
10
+ - Updated dependencies [6c9d8bb]
11
+ - Updated dependencies [132ee84]
12
+ - Updated dependencies [89f1931]
13
+ - Updated dependencies [40ba841]
14
+ - Updated dependencies [32c7221]
15
+ - @gencode/cli@0.14.0
16
+ - @gencode/agents@0.16.0
17
+
18
+ ## 0.3.1
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [cbd1dba]
23
+ - Updated dependencies [cbd1dba]
24
+ - Updated dependencies [5af5e22]
25
+ - @gencode/agents@0.15.0
26
+ - @gencode/cli@0.13.0
27
+
3
28
  ## 0.3.0
4
29
 
5
30
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/server",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "aimax-server": "./dist/bin.js"
@@ -19,8 +19,8 @@
19
19
  "access": "public"
20
20
  },
21
21
  "dependencies": {
22
- "@gencode/agents": "0.14.0",
23
- "@gencode/cli": "0.12.1"
22
+ "@gencode/agents": "0.16.0",
23
+ "@gencode/cli": "0.14.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/node": "^22.0.0",