@aigne/cli 1.32.2 → 1.33.0

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,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.33.0](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.32.2...cli-v1.33.0) (2025-08-11)
4
+
5
+
6
+ ### Features
7
+
8
+ * 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))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/agent-library bumped to 1.21.16
16
+ * @aigne/agentic-memory bumped to 1.0.16
17
+ * @aigne/aigne-hub bumped to 0.4.7
18
+ * @aigne/core bumped to 1.47.0
19
+ * @aigne/default-memory bumped to 1.0.16
20
+ * @aigne/openai bumped to 0.10.16
21
+
3
22
  ## [1.32.2](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.32.1...cli-v1.32.2) (2025-08-11)
4
23
 
5
24
 
@@ -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(nunjucks.renderString(agent.taskTitle, { ...input }))}`;
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.32.2",
3
+ "version": "1.33.0",
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/aigne-hub": "^0.4.6",
78
- "@aigne/default-memory": "^1.0.15",
79
- "@aigne/agentic-memory": "^1.0.15",
80
- "@aigne/core": "^1.46.1",
81
- "@aigne/openai": "^0.10.15",
76
+ "@aigne/agentic-memory": "^1.0.16",
77
+ "@aigne/agent-library": "^1.21.16",
78
+ "@aigne/aigne-hub": "^0.4.7",
82
79
  "@aigne/observability-api": "^0.9.0",
83
- "@aigne/agent-library": "^1.21.15"
80
+ "@aigne/default-memory": "^1.0.16",
81
+ "@aigne/openai": "^0.10.16",
82
+ "@aigne/core": "^1.47.0"
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",