@gencode/server 0.3.13 → 0.3.15
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 +37 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,54 @@
|
|
|
1
1
|
# @gencode/server
|
|
2
2
|
|
|
3
|
+
## 0.3.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0e09aac: 所有发往模型网关的请求现在都会携带 `X-Model-Id` header,其值为该请求最终实际使用的模型名,包括主 Agent、子 Agent、插件、摘要和主题拆分等调用路径;无需新增配置。
|
|
8
|
+
- f7335c1: Skill 的高风险命令现在必须在 `SKILL.md` 同级的 `actions.yml` 中声明,并通过 `skill_action_run` 执行;运行时不再向 Agent 提供可直接审批任意命令的 `guarded_exec` 工具。已有 skill 如果直接调用该工具,需要先把命令、输入校验和 `hitl` 策略迁移到 `actions.yml`。
|
|
9
|
+
- e691d24: HITL 暂停且当前轮没有模型文本时,返回内容现在直接展示确认请求的标题和说明,不再添加 `[HITL paused]` 前缀;暂停状态及恢复协议保持不变。
|
|
10
|
+
- ed68c0c: Topic-filtered conversations now compact oversized selected topics without replacing unrelated session history. Topic compaction is stored in `.aimax/sessions/<sessionId>/topic-segments.json`, while `transcript.jsonl` remains complete; ordinary conversations and `/compact` keep their existing global compaction behavior. Automatic compaction also reserves context for the base system prompt and visible tool schemas before deciding how much history to retain.
|
|
11
|
+
- Updated dependencies [0e09aac]
|
|
12
|
+
- Updated dependencies [f7335c1]
|
|
13
|
+
- Updated dependencies [e691d24]
|
|
14
|
+
- Updated dependencies [ed68c0c]
|
|
15
|
+
- @gencode/agents@0.18.2
|
|
16
|
+
- @gencode/cli@0.16.3
|
|
17
|
+
|
|
18
|
+
## 0.3.14
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [ee0f689]
|
|
23
|
+
- Updated dependencies [bc161b3]
|
|
24
|
+
- Updated dependencies [d77a70b]
|
|
25
|
+
- @gencode/cli@0.16.2
|
|
26
|
+
- @gencode/agents@0.18.1
|
|
27
|
+
|
|
3
28
|
## 0.3.13
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
|
6
31
|
|
|
7
32
|
- e32aa85: `aimax-server` now preloads the CLI run orchestration during server startup instead of waiting until the accepted `/run` request begins execution. Deployments using the one-shot prestart server should see less delay between the HTTP `202 accepted` response and the first CLI run log. The CLI also exposes a lightweight `@gencode/cli/run` entrypoint for server-style embedders that only need `executeRun` without importing the full command program surface.
|
|
8
33
|
- Updated dependencies [e32aa85]
|
|
9
|
-
- @gencode/cli@0.
|
|
34
|
+
- @gencode/cli@0.16.1
|
|
10
35
|
|
|
11
36
|
## 0.3.12
|
|
12
37
|
|
|
13
38
|
### Patch Changes
|
|
14
39
|
|
|
15
40
|
- ac37ac3: `aimax-server` 的 `POST /run` 成功接收响应现在会返回 `receivedAt` 和 `respondedAt` 两个中国本地时间字段,格式与 CLI 日志一致(`YYYY-MM-DD HH:mm:ss.SSS`),方便上游记录 server 接收请求与返回 HTTP acceptance 的时间点。任务进度和最终结果仍继续通过 CLI stdout、callback 或 websocket 通道发送。
|
|
41
|
+
- Updated dependencies [37f0256]
|
|
42
|
+
- Updated dependencies [0279e82]
|
|
43
|
+
- Updated dependencies [0279e82]
|
|
44
|
+
- Updated dependencies [0279e82]
|
|
45
|
+
- Updated dependencies [6717f94]
|
|
46
|
+
- Updated dependencies [0279e82]
|
|
47
|
+
- Updated dependencies [0279e82]
|
|
48
|
+
- Updated dependencies [0279e82]
|
|
49
|
+
- Updated dependencies [9ff9574]
|
|
50
|
+
- @gencode/cli@0.16.0
|
|
51
|
+
- @gencode/agents@0.18.0
|
|
16
52
|
|
|
17
53
|
## 0.3.11
|
|
18
54
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gencode/server",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.15",
|
|
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.
|
|
23
|
-
"@gencode/cli": "0.
|
|
22
|
+
"@gencode/agents": "0.18.2",
|
|
23
|
+
"@gencode/cli": "0.16.3"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/node": "^22.0.0",
|