@aigne/cli 1.49.0-beta.6 → 1.49.0-beta.7
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 +21 -1
- package/dist/tracer/terminal.js +7 -6
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.49.0-beta.7](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.49.0-beta.6...cli-v1.49.0-beta.7) (2025-09-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **cli:** options.prompts should always available ([44ca0a6](https://github.com/AIGNE-io/aigne-framework/commit/44ca0a65d910fbd327b89d2f3dfe38ab7d1be7df))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/agent-library bumped to 1.21.46-beta.7
|
|
16
|
+
* @aigne/agentic-memory bumped to 1.0.46-beta.7
|
|
17
|
+
* @aigne/aigne-hub bumped to 0.10.0-beta.7
|
|
18
|
+
* @aigne/core bumped to 1.61.0-beta.6
|
|
19
|
+
* @aigne/default-memory bumped to 1.2.9-beta.7
|
|
20
|
+
* @aigne/openai bumped to 0.16.0-beta.7
|
|
21
|
+
* devDependencies
|
|
22
|
+
* @aigne/test-utils bumped to 0.5.53-beta.6
|
|
23
|
+
|
|
3
24
|
## [1.49.0-beta.6](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.49.0-beta.5...cli-v1.49.0-beta.6) (2025-09-25)
|
|
4
25
|
|
|
5
26
|
|
|
@@ -28,7 +49,6 @@
|
|
|
28
49
|
### Features
|
|
29
50
|
|
|
30
51
|
* **cli:** add new eval command for assessing AI agent performance using custom datasets ([#535](https://github.com/AIGNE-io/aigne-framework/issues/535)) ([9da967b](https://github.com/AIGNE-io/aigne-framework/commit/9da967b01ef9eeee4c5e1242934cf08e14815753))
|
|
31
|
-
* **cli:** add new eval command for assessing AI agent performance using custom datasets ([#535](https://github.com/AIGNE-io/aigne-framework/issues/535)) ([9da967b](https://github.com/AIGNE-io/aigne-framework/commit/9da967b01ef9eeee4c5e1242934cf08e14815753))
|
|
32
52
|
|
|
33
53
|
|
|
34
54
|
### Dependencies
|
package/dist/tracer/terminal.js
CHANGED
|
@@ -36,13 +36,14 @@ export class TerminalTracer {
|
|
|
36
36
|
const collapsedMap = new Map();
|
|
37
37
|
const hideContextIds = new Set();
|
|
38
38
|
const onStart = async ({ context, agent, ...event }) => {
|
|
39
|
+
const result = { options: { prompts: this.proxiedPrompts } };
|
|
39
40
|
if (agent instanceof UserAgent)
|
|
40
|
-
return;
|
|
41
|
+
return result;
|
|
41
42
|
if (agent.taskRenderMode === "hide") {
|
|
42
43
|
hideContextIds.add(context.id);
|
|
43
|
-
return;
|
|
44
|
+
return result;
|
|
44
45
|
}
|
|
45
|
-
|
|
46
|
+
if (agent.taskRenderMode === "collapse") {
|
|
46
47
|
collapsedMap.set(context.id, {
|
|
47
48
|
ancestor: { contextId: context.id },
|
|
48
49
|
usage: newEmptyContextUsage(),
|
|
@@ -52,12 +53,12 @@ export class TerminalTracer {
|
|
|
52
53
|
if (context.parentId) {
|
|
53
54
|
if (hideContextIds.has(context.parentId)) {
|
|
54
55
|
hideContextIds.add(context.id);
|
|
55
|
-
return;
|
|
56
|
+
return result;
|
|
56
57
|
}
|
|
57
58
|
const collapsed = collapsedMap.get(context.parentId);
|
|
58
59
|
if (collapsed) {
|
|
59
60
|
collapsedMap.set(context.id, collapsed);
|
|
60
|
-
return;
|
|
61
|
+
return result;
|
|
61
62
|
}
|
|
62
63
|
}
|
|
63
64
|
const contextId = context.id;
|
|
@@ -92,7 +93,7 @@ export class TerminalTracer {
|
|
|
92
93
|
else {
|
|
93
94
|
listr.add(listrTask);
|
|
94
95
|
}
|
|
95
|
-
return
|
|
96
|
+
return result;
|
|
96
97
|
};
|
|
97
98
|
const onSuccess = async ({ context, agent, output, ...event }) => {
|
|
98
99
|
const contextId = context.id;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/cli",
|
|
3
|
-
"version": "1.49.0-beta.
|
|
3
|
+
"version": "1.49.0-beta.7",
|
|
4
4
|
"description": "Your command center for agent development",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -82,13 +82,13 @@
|
|
|
82
82
|
"yargs": "^18.0.0",
|
|
83
83
|
"yoctocolors-cjs": "^2.1.3",
|
|
84
84
|
"zod": "^3.25.67",
|
|
85
|
-
"@aigne/agent-library": "^1.21.46-beta.
|
|
86
|
-
"@aigne/aigne-hub": "^0.10.0-beta.
|
|
87
|
-
"@aigne/
|
|
88
|
-
"@aigne/
|
|
89
|
-
"@aigne/default-memory": "^1.2.9-beta.
|
|
85
|
+
"@aigne/agent-library": "^1.21.46-beta.7",
|
|
86
|
+
"@aigne/aigne-hub": "^0.10.0-beta.7",
|
|
87
|
+
"@aigne/agentic-memory": "^1.0.46-beta.7",
|
|
88
|
+
"@aigne/core": "^1.61.0-beta.6",
|
|
89
|
+
"@aigne/default-memory": "^1.2.9-beta.7",
|
|
90
90
|
"@aigne/observability-api": "^0.11.0-beta",
|
|
91
|
-
"@aigne/openai": "^0.16.0-beta.
|
|
91
|
+
"@aigne/openai": "^0.16.0-beta.7"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
94
|
"@inquirer/testing": "^2.1.50",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"rimraf": "^6.0.1",
|
|
106
106
|
"typescript": "^5.9.2",
|
|
107
107
|
"ufo": "^1.6.1",
|
|
108
|
-
"@aigne/test-utils": "^0.5.53-beta.
|
|
108
|
+
"@aigne/test-utils": "^0.5.53-beta.6"
|
|
109
109
|
},
|
|
110
110
|
"scripts": {
|
|
111
111
|
"lint": "tsc --noEmit",
|