@gencode/cli 0.18.2 → 0.18.4
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 +19 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @gencode/cli
|
|
2
2
|
|
|
3
|
+
## 0.18.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1014be9: 使用 `aimax run --channel CRON --parent-session-id <主会话ID>` 启动定时任务时,即使新用户尚未聊天、`.aimax/sessions/<主会话ID>/` 还不存在,任务也会先创建 `session.json` 和空 `transcript.jsonl` 后继续执行。自动创建的主会话默认使用 `title: "New session"`、`channel: "WEB"`;已有主会话文件不会被覆盖或清空。
|
|
8
|
+
- Updated dependencies [1014be9]
|
|
9
|
+
- Updated dependencies [6351f28]
|
|
10
|
+
- @gencode/agents@0.21.4
|
|
11
|
+
|
|
12
|
+
## 0.18.3
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 326db97: Agent Team runs now load only the requested `<name>.md` definition across `/aimax/agent-teams`, `<dataDir>/.aimax/agent-teams`, and the optional project `.aimax/agent-teams` directory, so an invalid unrelated team no longer blocks a valid selected team. Duplicate definitions of the requested name still fail. Invalid `description` diagnostics now identify the source file and distinguish missing, non-string YAML, and over-limit values; the 200-character limit counts Unicode characters. Quote YAML-like text such as dates, numbers, `true`, `false`, or `null` when it should remain a string.
|
|
17
|
+
- c5ae0fd: Agent runs now retry transient model failures independently for each LLM turn. A timeout or retryable gateway error that occurs after earlier tool calls can recover without replaying those completed tools, and every new turn receives a fresh retry budget. No configuration is required; the existing safeguard still stops automatic retry when the failing turn itself has already streamed assistant text or produced a tool result.
|
|
18
|
+
- Updated dependencies [c5ae0fd]
|
|
19
|
+
- Updated dependencies [c5ae0fd]
|
|
20
|
+
- @gencode/agents@0.21.3
|
|
21
|
+
|
|
3
22
|
## 0.18.2
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gencode/cli",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"aimax": "./dist/bin.js"
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"commander": "^14.0.3",
|
|
33
33
|
"gensign-node": "latest",
|
|
34
34
|
"log4js": "^6.9.1",
|
|
35
|
-
"@gencode/agents": "0.21.
|
|
35
|
+
"@gencode/agents": "0.21.4",
|
|
36
36
|
"@gencode/shared": "0.7.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|