@aigne/cli 1.49.0-beta.5 → 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 CHANGED
@@ -1,12 +1,54 @@
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
+
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)
25
+
26
+
27
+ ### Features
28
+
29
+ * **blocklet:** add token and cost summary for tracing list ([#543](https://github.com/AIGNE-io/aigne-framework/issues/543)) ([5e78919](https://github.com/AIGNE-io/aigne-framework/commit/5e789199b8183cf9c48339ec8163faec001ca64c))
30
+
31
+
32
+ ### Dependencies
33
+
34
+ * The following workspace dependencies were updated
35
+ * dependencies
36
+ * @aigne/agent-library bumped to 1.21.46-beta.6
37
+ * @aigne/agentic-memory bumped to 1.0.46-beta.6
38
+ * @aigne/aigne-hub bumped to 0.10.0-beta.6
39
+ * @aigne/core bumped to 1.61.0-beta.5
40
+ * @aigne/default-memory bumped to 1.2.9-beta.6
41
+ * @aigne/observability-api bumped to 0.11.0-beta
42
+ * @aigne/openai bumped to 0.16.0-beta.6
43
+ * devDependencies
44
+ * @aigne/test-utils bumped to 0.5.53-beta.5
45
+
3
46
  ## [1.49.0-beta.5](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.48.4-beta.5...cli-v1.49.0-beta.5) (2025-09-25)
4
47
 
5
48
 
6
49
  ### Features
7
50
 
8
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))
9
- * **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))
10
52
 
11
53
 
12
54
  ### 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.5",
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.5",
86
- "@aigne/agentic-memory": "^1.0.46-beta.5",
87
- "@aigne/aigne-hub": "^0.10.0-beta.5",
88
- "@aigne/core": "^1.61.0-beta.4",
89
- "@aigne/default-memory": "^1.2.9-beta.5",
90
- "@aigne/observability-api": "^0.10.5-beta",
91
- "@aigne/openai": "^0.16.0-beta.5"
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
+ "@aigne/observability-api": "^0.11.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.4"
108
+ "@aigne/test-utils": "^0.5.53-beta.6"
109
109
  },
110
110
  "scripts": {
111
111
  "lint": "tsc --noEmit",