@aigne/cli 1.57.0-beta.4 → 1.57.1-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 +52 -0
- package/dist/commands/hub.js +2 -4
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.57.1-beta](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.57.0...cli-v1.57.1-beta) (2025-11-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* bump version ([ba7ad18](https://github.com/AIGNE-io/aigne-framework/commit/ba7ad184fcf32b49bf0507a3cb638d20fb00690d))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/afs bumped to 1.2.2-beta
|
|
16
|
+
* @aigne/afs-history bumped to 1.1.1-beta
|
|
17
|
+
* @aigne/afs-local-fs bumped to 1.2.2-beta
|
|
18
|
+
* @aigne/agent-library bumped to 1.22.2-beta
|
|
19
|
+
* @aigne/agentic-memory bumped to 1.1.2-beta
|
|
20
|
+
* @aigne/secrets bumped to 0.1.2-beta
|
|
21
|
+
* @aigne/aigne-hub bumped to 0.10.12-beta
|
|
22
|
+
* @aigne/core bumped to 1.69.2-beta
|
|
23
|
+
* @aigne/default-memory bumped to 1.3.2-beta
|
|
24
|
+
* @aigne/observability-api bumped to 0.11.11-beta
|
|
25
|
+
* @aigne/openai bumped to 0.16.12-beta
|
|
26
|
+
* devDependencies
|
|
27
|
+
* @aigne/test-utils bumped to 0.5.65-beta
|
|
28
|
+
|
|
29
|
+
## [1.57.0](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.57.0-beta.5...cli-v1.57.0) (2025-11-28)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Dependencies
|
|
33
|
+
|
|
34
|
+
* The following workspace dependencies were updated
|
|
35
|
+
* dependencies
|
|
36
|
+
* @aigne/afs-local-fs bumped to 1.2.1
|
|
37
|
+
* @aigne/agent-library bumped to 1.22.1
|
|
38
|
+
* @aigne/agentic-memory bumped to 1.1.1
|
|
39
|
+
* @aigne/secrets bumped to 0.1.1
|
|
40
|
+
* @aigne/aigne-hub bumped to 0.10.11
|
|
41
|
+
* @aigne/core bumped to 1.69.1
|
|
42
|
+
* @aigne/default-memory bumped to 1.3.1
|
|
43
|
+
* @aigne/observability-api bumped to 0.11.10
|
|
44
|
+
* @aigne/openai bumped to 0.16.11
|
|
45
|
+
* devDependencies
|
|
46
|
+
* @aigne/test-utils bumped to 0.5.64
|
|
47
|
+
|
|
48
|
+
## [1.57.0-beta.5](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.57.0-beta.4...cli-v1.57.0-beta.5) (2025-11-28)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
### Bug Fixes
|
|
52
|
+
|
|
53
|
+
* **cli:** improve hub status display for non-default hubs ([#784](https://github.com/AIGNE-io/aigne-framework/issues/784)) ([9e83e01](https://github.com/AIGNE-io/aigne-framework/commit/9e83e01385bdf8fe6d6801c3b49007cac31a6eb5))
|
|
54
|
+
|
|
3
55
|
## [1.57.0-beta.4](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.57.0-beta.3...cli-v1.57.0-beta.4) (2025-11-28)
|
|
4
56
|
|
|
5
57
|
|
package/dist/commands/hub.js
CHANGED
|
@@ -26,9 +26,7 @@ function printHubStatus(data) {
|
|
|
26
26
|
console.log(chalk.bold("AIGNE Hub Connection"));
|
|
27
27
|
console.log(chalk.gray(divider));
|
|
28
28
|
console.log(`${chalk.bold("Hub:".padEnd(10))} ${data.hub}`);
|
|
29
|
-
console.log(`${chalk.bold("Status:".padEnd(10))} ${data.status === "Connected"
|
|
30
|
-
? chalk.green(`${data.status} ✅`)
|
|
31
|
-
: chalk.red(`${data.status} ❌`)}`);
|
|
29
|
+
console.log(`${chalk.bold("Status:".padEnd(10))} ${data.status === "Connected" ? chalk.green(`${data.status} ✅`) : `${data.status}`}`);
|
|
32
30
|
console.log("");
|
|
33
31
|
console.log(chalk.bold("User:"));
|
|
34
32
|
console.log(` ${formatHubInfoName("Name")} ${data.user.name}`);
|
|
@@ -304,7 +302,7 @@ async function printHubDetails(url) {
|
|
|
304
302
|
}).catch(() => null);
|
|
305
303
|
printHubStatus({
|
|
306
304
|
hub: getUrlOrigin(url),
|
|
307
|
-
status: isDefault ? "Connected" : "Not
|
|
305
|
+
status: isDefault ? "Connected" : "Not Used",
|
|
308
306
|
user: {
|
|
309
307
|
name: userInfo?.user.fullName || "",
|
|
310
308
|
did: userInfo?.user.did || "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/cli",
|
|
3
|
-
"version": "1.57.
|
|
3
|
+
"version": "1.57.1-beta",
|
|
4
4
|
"description": "Your command center for agent development",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -89,17 +89,17 @@
|
|
|
89
89
|
"yoctocolors-cjs": "^2.1.3",
|
|
90
90
|
"zod": "^3.25.67",
|
|
91
91
|
"zod-to-json-schema": "^3.24.6",
|
|
92
|
-
"@aigne/afs": "^1.2.
|
|
93
|
-
"@aigne/afs-
|
|
94
|
-
"@aigne/
|
|
95
|
-
"@aigne/
|
|
96
|
-
"@aigne/
|
|
97
|
-
"@aigne/secrets": "^0.1.
|
|
98
|
-
"@aigne/aigne-hub": "^0.10.
|
|
99
|
-
"@aigne/core": "^1.69.
|
|
100
|
-
"@aigne/
|
|
101
|
-
"@aigne/
|
|
102
|
-
"@aigne/openai": "^0.16.
|
|
92
|
+
"@aigne/afs": "^1.2.2-beta",
|
|
93
|
+
"@aigne/afs-history": "^1.1.1-beta",
|
|
94
|
+
"@aigne/agent-library": "^1.22.2-beta",
|
|
95
|
+
"@aigne/afs-local-fs": "^1.2.2-beta",
|
|
96
|
+
"@aigne/agentic-memory": "^1.1.2-beta",
|
|
97
|
+
"@aigne/secrets": "^0.1.2-beta",
|
|
98
|
+
"@aigne/aigne-hub": "^0.10.12-beta",
|
|
99
|
+
"@aigne/core": "^1.69.2-beta",
|
|
100
|
+
"@aigne/observability-api": "^0.11.11-beta",
|
|
101
|
+
"@aigne/default-memory": "^1.3.2-beta",
|
|
102
|
+
"@aigne/openai": "^0.16.12-beta"
|
|
103
103
|
},
|
|
104
104
|
"devDependencies": {
|
|
105
105
|
"@inquirer/testing": "^2.1.50",
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
"rimraf": "^6.0.1",
|
|
117
117
|
"typescript": "^5.9.2",
|
|
118
118
|
"ufo": "^1.6.1",
|
|
119
|
-
"@aigne/test-utils": "^0.5.
|
|
119
|
+
"@aigne/test-utils": "^0.5.65-beta"
|
|
120
120
|
},
|
|
121
121
|
"scripts": {
|
|
122
122
|
"lint": "tsc --noEmit",
|