@aigne/cli 1.49.0-beta.6 → 1.49.0-beta.8

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 CHANGED
@@ -1,5 +1,42 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.49.0-beta.8](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.49.0-beta.7...cli-v1.49.0-beta.8) (2025-09-26)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @aigne/agent-library bumped to 1.21.46-beta.8
11
+ * @aigne/agentic-memory bumped to 1.0.46-beta.8
12
+ * @aigne/aigne-hub bumped to 0.10.0-beta.8
13
+ * @aigne/core bumped to 1.61.0-beta.7
14
+ * @aigne/default-memory bumped to 1.2.9-beta.8
15
+ * @aigne/openai bumped to 0.16.0-beta.8
16
+ * devDependencies
17
+ * @aigne/test-utils bumped to 0.5.53-beta.7
18
+
19
+ ## [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)
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * **cli:** options.prompts should always available ([44ca0a6](https://github.com/AIGNE-io/aigne-framework/commit/44ca0a65d910fbd327b89d2f3dfe38ab7d1be7df))
25
+
26
+
27
+ ### Dependencies
28
+
29
+ * The following workspace dependencies were updated
30
+ * dependencies
31
+ * @aigne/agent-library bumped to 1.21.46-beta.7
32
+ * @aigne/agentic-memory bumped to 1.0.46-beta.7
33
+ * @aigne/aigne-hub bumped to 0.10.0-beta.7
34
+ * @aigne/core bumped to 1.61.0-beta.6
35
+ * @aigne/default-memory bumped to 1.2.9-beta.7
36
+ * @aigne/openai bumped to 0.16.0-beta.7
37
+ * devDependencies
38
+ * @aigne/test-utils bumped to 0.5.53-beta.6
39
+
3
40
  ## [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
41
 
5
42
 
@@ -28,7 +65,6 @@
28
65
  ### Features
29
66
 
30
67
  * **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
68
 
33
69
 
34
70
  ### Dependencies
@@ -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
- else if (agent.taskRenderMode === "collapse") {
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 { options: { prompts: this.proxiedPrompts } };
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.6",
3
+ "version": "1.49.0-beta.8",
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.6",
86
- "@aigne/aigne-hub": "^0.10.0-beta.6",
87
- "@aigne/core": "^1.61.0-beta.5",
88
- "@aigne/agentic-memory": "^1.0.46-beta.6",
89
- "@aigne/default-memory": "^1.2.9-beta.6",
85
+ "@aigne/agent-library": "^1.21.46-beta.8",
86
+ "@aigne/agentic-memory": "^1.0.46-beta.8",
87
+ "@aigne/core": "^1.61.0-beta.7",
88
+ "@aigne/aigne-hub": "^0.10.0-beta.8",
89
+ "@aigne/default-memory": "^1.2.9-beta.8",
90
90
  "@aigne/observability-api": "^0.11.0-beta",
91
- "@aigne/openai": "^0.16.0-beta.6"
91
+ "@aigne/openai": "^0.16.0-beta.8"
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.5"
108
+ "@aigne/test-utils": "^0.5.53-beta.7"
109
109
  },
110
110
  "scripts": {
111
111
  "lint": "tsc --noEmit",