@aigne/cli 1.59.0-beta.21 → 1.59.0-beta.23
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 +43 -0
- package/dist/utils/run-with-aigne.js +4 -0
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.59.0-beta.23](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.59.0-beta.22...cli-v1.59.0-beta.23) (2026-01-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* bump deps to latest and fix build error ([#897](https://github.com/AIGNE-io/aigne-framework/issues/897)) ([4059e79](https://github.com/AIGNE-io/aigne-framework/commit/4059e790ae63b9e4ebd66487665014b0cd7ce6ec))
|
|
9
|
+
* **core:** make async memory updates non-blocking ([#900](https://github.com/AIGNE-io/aigne-framework/issues/900)) ([314f2c3](https://github.com/AIGNE-io/aigne-framework/commit/314f2c35d8baa88b600cc4de3f5983fef03a804c))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* The following workspace dependencies were updated
|
|
15
|
+
* dependencies
|
|
16
|
+
* @aigne/afs-local-fs bumped to 1.4.0-beta.19
|
|
17
|
+
* @aigne/agent-library bumped to 1.24.0-beta.20
|
|
18
|
+
* @aigne/agentic-memory bumped to 1.1.6-beta.18
|
|
19
|
+
* @aigne/aigne-hub bumped to 0.10.16-beta.23
|
|
20
|
+
* @aigne/core bumped to 1.72.0-beta.18
|
|
21
|
+
* @aigne/default-memory bumped to 1.4.0-beta.17
|
|
22
|
+
* @aigne/observability-api bumped to 0.11.14-beta.3
|
|
23
|
+
* @aigne/openai bumped to 0.16.16-beta.18
|
|
24
|
+
* @aigne/secrets bumped to 0.1.6-beta.18
|
|
25
|
+
* devDependencies
|
|
26
|
+
* @aigne/test-utils bumped to 0.5.69-beta.18
|
|
27
|
+
|
|
28
|
+
## [1.59.0-beta.22](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.59.0-beta.21...cli-v1.59.0-beta.22) (2026-01-12)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Dependencies
|
|
32
|
+
|
|
33
|
+
* The following workspace dependencies were updated
|
|
34
|
+
* dependencies
|
|
35
|
+
* @aigne/afs-local-fs bumped to 1.4.0-beta.18
|
|
36
|
+
* @aigne/agent-library bumped to 1.24.0-beta.19
|
|
37
|
+
* @aigne/agentic-memory bumped to 1.1.6-beta.17
|
|
38
|
+
* @aigne/aigne-hub bumped to 0.10.16-beta.22
|
|
39
|
+
* @aigne/core bumped to 1.72.0-beta.17
|
|
40
|
+
* @aigne/default-memory bumped to 1.4.0-beta.16
|
|
41
|
+
* @aigne/openai bumped to 0.16.16-beta.17
|
|
42
|
+
* @aigne/secrets bumped to 0.1.6-beta.17
|
|
43
|
+
* devDependencies
|
|
44
|
+
* @aigne/test-utils bumped to 0.5.69-beta.17
|
|
45
|
+
|
|
3
46
|
## [1.59.0-beta.21](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.59.0-beta.20...cli-v1.59.0-beta.21) (2026-01-12)
|
|
4
47
|
|
|
5
48
|
|
|
@@ -5,9 +5,11 @@ import { exists } from "@aigne/agent-library/utils/fs.js";
|
|
|
5
5
|
import { AIAgent, DEFAULT_OUTPUT_KEY, UserAgent, } from "@aigne/core";
|
|
6
6
|
import { logger } from "@aigne/core/utils/logger.js";
|
|
7
7
|
import { isEmpty, isNil, omitBy, pick } from "@aigne/core/utils/type-utils.js";
|
|
8
|
+
import { v7 } from "@aigne/uuid";
|
|
8
9
|
import chalk from "chalk";
|
|
9
10
|
import yargs from "yargs";
|
|
10
11
|
import { hideBin } from "yargs/helpers";
|
|
12
|
+
import { DEFAULT_USER_ID } from "../constants.js";
|
|
11
13
|
import { TerminalTracer } from "../tracer/terminal.js";
|
|
12
14
|
import { loadAIGNE } from "./load-aigne.js";
|
|
13
15
|
import { DEFAULT_CHAT_INPUT_KEY, runChatLoopInTerminal, } from "./run-chat-loop.js";
|
|
@@ -64,6 +66,8 @@ export async function runWithAIGNE(agentCreator, { aigne, argv = process.argv, c
|
|
|
64
66
|
outputKey: outputKey || options.outputKey,
|
|
65
67
|
chatLoopOptions,
|
|
66
68
|
input,
|
|
69
|
+
sessionId: chatLoopOptions?.sessionId || v7(),
|
|
70
|
+
userId: DEFAULT_USER_ID,
|
|
67
71
|
});
|
|
68
72
|
}
|
|
69
73
|
finally {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/cli",
|
|
3
|
-
"version": "1.59.0-beta.
|
|
3
|
+
"version": "1.59.0-beta.23",
|
|
4
4
|
"description": "Your command center for agent development",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@inquirer/type": "^3.0.8",
|
|
57
57
|
"@listr2/prompt-adapter-inquirer": "^3.0.4",
|
|
58
58
|
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
59
|
-
"@ocap/mcrypto": "^1.
|
|
59
|
+
"@ocap/mcrypto": "^1.28.5",
|
|
60
60
|
"@smithy/node-http-handler": "^4.2.1",
|
|
61
61
|
"ansi-escapes": "^7.1.0",
|
|
62
62
|
"ansi-regex": "^6.2.2",
|
|
@@ -92,15 +92,15 @@
|
|
|
92
92
|
"zod-to-json-schema": "^3.24.6",
|
|
93
93
|
"@aigne/afs": "^1.4.0-beta.8",
|
|
94
94
|
"@aigne/afs-history": "^1.2.0-beta.9",
|
|
95
|
-
"@aigne/
|
|
96
|
-
"@aigne/
|
|
97
|
-
"@aigne/agentic-memory": "^1.1.6-beta.
|
|
98
|
-
"@aigne/aigne-hub": "^0.10.16-beta.
|
|
99
|
-
"@aigne/core": "^1.72.0-beta.
|
|
100
|
-
"@aigne/default-memory": "^1.4.0-beta.
|
|
101
|
-
"@aigne/
|
|
102
|
-
"@aigne/secrets": "^0.1.6-beta.
|
|
103
|
-
"@aigne/
|
|
95
|
+
"@aigne/afs-local-fs": "^1.4.0-beta.19",
|
|
96
|
+
"@aigne/agent-library": "^1.24.0-beta.20",
|
|
97
|
+
"@aigne/agentic-memory": "^1.1.6-beta.18",
|
|
98
|
+
"@aigne/aigne-hub": "^0.10.16-beta.23",
|
|
99
|
+
"@aigne/core": "^1.72.0-beta.18",
|
|
100
|
+
"@aigne/default-memory": "^1.4.0-beta.17",
|
|
101
|
+
"@aigne/observability-api": "^0.11.14-beta.3",
|
|
102
|
+
"@aigne/secrets": "^0.1.6-beta.18",
|
|
103
|
+
"@aigne/openai": "^0.16.16-beta.18"
|
|
104
104
|
},
|
|
105
105
|
"devDependencies": {
|
|
106
106
|
"@inquirer/testing": "^2.1.50",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"rimraf": "^6.0.1",
|
|
118
118
|
"typescript": "^5.9.2",
|
|
119
119
|
"ufo": "^1.6.1",
|
|
120
|
-
"@aigne/test-utils": "^0.5.69-beta.
|
|
120
|
+
"@aigne/test-utils": "^0.5.69-beta.18"
|
|
121
121
|
},
|
|
122
122
|
"scripts": {
|
|
123
123
|
"lint": "tsc --noEmit",
|