@aigne/cli 1.32.2 → 1.33.1
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 +33 -0
- package/dist/tracer/terminal.js +1 -2
- package/package.json +7 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.33.1](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.33.0...cli-v1.33.1) (2025-08-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* The following workspace dependencies were updated
|
|
9
|
+
* dependencies
|
|
10
|
+
* @aigne/agent-library bumped to 1.21.17
|
|
11
|
+
* @aigne/agentic-memory bumped to 1.0.17
|
|
12
|
+
* @aigne/aigne-hub bumped to 0.4.8
|
|
13
|
+
* @aigne/core bumped to 1.48.0
|
|
14
|
+
* @aigne/default-memory bumped to 1.0.17
|
|
15
|
+
* @aigne/openai bumped to 0.10.17
|
|
16
|
+
|
|
17
|
+
## [1.33.0](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.32.2...cli-v1.33.0) (2025-08-11)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* enhance AI agent streaming with thinking mode support ([#343](https://github.com/AIGNE-io/aigne-framework/issues/343)) ([bea2a39](https://github.com/AIGNE-io/aigne-framework/commit/bea2a39a2610c2fe58e46ad612b5103726159ab9))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* The following workspace dependencies were updated
|
|
28
|
+
* dependencies
|
|
29
|
+
* @aigne/agent-library bumped to 1.21.16
|
|
30
|
+
* @aigne/agentic-memory bumped to 1.0.16
|
|
31
|
+
* @aigne/aigne-hub bumped to 0.4.7
|
|
32
|
+
* @aigne/core bumped to 1.47.0
|
|
33
|
+
* @aigne/default-memory bumped to 1.0.16
|
|
34
|
+
* @aigne/openai bumped to 0.10.16
|
|
35
|
+
|
|
3
36
|
## [1.32.2](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.32.1...cli-v1.32.2) (2025-08-11)
|
|
4
37
|
|
|
5
38
|
|
package/dist/tracer/terminal.js
CHANGED
|
@@ -9,7 +9,6 @@ import { markedTerminal } from "@aigne/marked-terminal";
|
|
|
9
9
|
import * as prompts from "@inquirer/prompts";
|
|
10
10
|
import chalk from "chalk";
|
|
11
11
|
import { Marked } from "marked";
|
|
12
|
-
import nunjucks from "nunjucks";
|
|
13
12
|
import { AIGNEListr, AIGNEListrRenderer } from "../utils/listr.js";
|
|
14
13
|
import { parseDuration } from "../utils/time.js";
|
|
15
14
|
export class TerminalTracer {
|
|
@@ -149,7 +148,7 @@ export class TerminalTracer {
|
|
|
149
148
|
formatTaskTitle(agent, { task, usage, time, input }) {
|
|
150
149
|
let title = agent.name;
|
|
151
150
|
if (agent.taskTitle) {
|
|
152
|
-
title += ` ${chalk.cyan(
|
|
151
|
+
title += ` ${chalk.cyan(agent.renderTaskTitle(input))}`;
|
|
153
152
|
}
|
|
154
153
|
if (usage && task?.usage)
|
|
155
154
|
title += ` ${this.formatTokenUsage(task.usage, task.extraTitleMetadata)}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.33.1",
|
|
4
4
|
"description": "Your command center for agent development",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -64,7 +64,6 @@
|
|
|
64
64
|
"inquirer": "^12.7.0",
|
|
65
65
|
"log-update": "^6.1.0",
|
|
66
66
|
"marked": "^16.0.0",
|
|
67
|
-
"nunjucks": "^3.2.4",
|
|
68
67
|
"open": "10.1.2",
|
|
69
68
|
"openai": "^5.8.3",
|
|
70
69
|
"p-wait-for": "^5.0.2",
|
|
@@ -74,13 +73,13 @@
|
|
|
74
73
|
"yaml": "^2.8.0",
|
|
75
74
|
"yargs": "^18.0.0",
|
|
76
75
|
"zod": "^3.25.67",
|
|
77
|
-
"@aigne/
|
|
78
|
-
"@aigne/
|
|
79
|
-
"@aigne/
|
|
80
|
-
"@aigne/core": "^1.
|
|
81
|
-
"@aigne/openai": "^0.10.15",
|
|
76
|
+
"@aigne/agent-library": "^1.21.17",
|
|
77
|
+
"@aigne/agentic-memory": "^1.0.17",
|
|
78
|
+
"@aigne/aigne-hub": "^0.4.8",
|
|
79
|
+
"@aigne/core": "^1.48.0",
|
|
82
80
|
"@aigne/observability-api": "^0.9.0",
|
|
83
|
-
"@aigne/
|
|
81
|
+
"@aigne/default-memory": "^1.0.17",
|
|
82
|
+
"@aigne/openai": "^0.10.17"
|
|
84
83
|
},
|
|
85
84
|
"devDependencies": {
|
|
86
85
|
"@types/archiver": "^6.0.3",
|
|
@@ -89,7 +88,6 @@
|
|
|
89
88
|
"@types/glob": "^9.0.0",
|
|
90
89
|
"@types/gradient-string": "^1.1.6",
|
|
91
90
|
"@types/node": "^24.0.12",
|
|
92
|
-
"@types/nunjucks": "^3.2.6",
|
|
93
91
|
"@types/yargs": "^17.0.33",
|
|
94
92
|
"archiver": "^7.0.1",
|
|
95
93
|
"hono": "4.8.4",
|