@aigne/cli 1.49.1-beta → 1.49.2-beta
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,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.49.2-beta](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.49.1...cli-v1.49.2-beta) (2025-09-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **checkbox:** display options list alongside error messages in search mode ([#563](https://github.com/AIGNE-io/aigne-framework/issues/563)) ([b0ebbed](https://github.com/AIGNE-io/aigne-framework/commit/b0ebbed933362fe462a6af2c812886f8e80d5194))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/agent-library bumped to 1.21.47-beta
|
|
16
|
+
* @aigne/agentic-memory bumped to 1.0.47-beta
|
|
17
|
+
* @aigne/aigne-hub bumped to 0.10.1-beta
|
|
18
|
+
* @aigne/core bumped to 1.61.1-beta
|
|
19
|
+
* @aigne/default-memory bumped to 1.2.10-beta
|
|
20
|
+
* @aigne/observability-api bumped to 0.11.1-beta
|
|
21
|
+
* @aigne/openai bumped to 0.16.1-beta
|
|
22
|
+
* devDependencies
|
|
23
|
+
* @aigne/test-utils bumped to 0.5.54-beta
|
|
24
|
+
|
|
25
|
+
## [1.49.1](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.49.1-beta...cli-v1.49.1) (2025-09-27)
|
|
26
|
+
|
|
3
27
|
## [1.49.1-beta](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.49.0...cli-v1.49.1-beta) (2025-09-27)
|
|
4
28
|
|
|
5
29
|
|
|
@@ -313,7 +313,7 @@ export default createPrompt((config, done) => {
|
|
|
313
313
|
const searchStr = theme.style.searchTerm(searchTerm);
|
|
314
314
|
return [
|
|
315
315
|
[prefix, message, searchStr].filter(Boolean).join(" "),
|
|
316
|
-
`${error
|
|
316
|
+
`${error}${error ? "\n" : ""}${page}${helpTipBottom}${choiceDescription}`,
|
|
317
317
|
];
|
|
318
318
|
}
|
|
319
319
|
return `${prefix} ${message}${helpTipTop}\n${page}${helpTipBottom}${choiceDescription}${error}${ansiEscapes.cursorHide}`;
|
|
@@ -18,7 +18,7 @@ export async function runAIGNEInChildProcess(method, ...args) {
|
|
|
18
18
|
if (event.method !== method)
|
|
19
19
|
reject(new Error(`Unknown method: ${event.method} expected: ${method}`));
|
|
20
20
|
else if (event.error)
|
|
21
|
-
reject(new Error(
|
|
21
|
+
reject(new Error(event.error.message));
|
|
22
22
|
else
|
|
23
23
|
resolve(event.result);
|
|
24
24
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/cli",
|
|
3
|
-
"version": "1.49.
|
|
3
|
+
"version": "1.49.2-beta",
|
|
4
4
|
"description": "Your command center for agent development",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -84,13 +84,13 @@
|
|
|
84
84
|
"yoctocolors-cjs": "^2.1.3",
|
|
85
85
|
"zod": "^3.25.67",
|
|
86
86
|
"zod-to-json-schema": "^3.24.6",
|
|
87
|
-
"@aigne/agent-library": "^1.21.
|
|
88
|
-
"@aigne/
|
|
89
|
-
"@aigne/core": "^1.61.
|
|
90
|
-
"@aigne/
|
|
91
|
-
"@aigne/
|
|
92
|
-
"@aigne/observability-api": "^0.11.
|
|
93
|
-
"@aigne/openai": "^0.16.
|
|
87
|
+
"@aigne/agent-library": "^1.21.47-beta",
|
|
88
|
+
"@aigne/aigne-hub": "^0.10.1-beta",
|
|
89
|
+
"@aigne/core": "^1.61.1-beta",
|
|
90
|
+
"@aigne/default-memory": "^1.2.10-beta",
|
|
91
|
+
"@aigne/agentic-memory": "^1.0.47-beta",
|
|
92
|
+
"@aigne/observability-api": "^0.11.1-beta",
|
|
93
|
+
"@aigne/openai": "^0.16.1-beta"
|
|
94
94
|
},
|
|
95
95
|
"devDependencies": {
|
|
96
96
|
"@inquirer/testing": "^2.1.50",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"rimraf": "^6.0.1",
|
|
108
108
|
"typescript": "^5.9.2",
|
|
109
109
|
"ufo": "^1.6.1",
|
|
110
|
-
"@aigne/test-utils": "^0.5.
|
|
110
|
+
"@aigne/test-utils": "^0.5.54-beta"
|
|
111
111
|
},
|
|
112
112
|
"scripts": {
|
|
113
113
|
"lint": "tsc --noEmit",
|