@aigne/cli 1.57.0-beta.4 → 1.57.0-beta.5
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 +7 -0
- package/dist/commands/hub.js +2 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [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)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **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))
|
|
9
|
+
|
|
3
10
|
## [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
11
|
|
|
5
12
|
|
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.0-beta.
|
|
3
|
+
"version": "1.57.0-beta.5",
|
|
4
4
|
"description": "Your command center for agent development",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -91,12 +91,12 @@
|
|
|
91
91
|
"zod-to-json-schema": "^3.24.6",
|
|
92
92
|
"@aigne/afs": "^1.2.1",
|
|
93
93
|
"@aigne/afs-local-fs": "^1.2.1-beta",
|
|
94
|
+
"@aigne/afs-history": "^1.1.0",
|
|
94
95
|
"@aigne/agentic-memory": "^1.1.1-beta",
|
|
95
96
|
"@aigne/agent-library": "^1.22.1-beta",
|
|
96
|
-
"@aigne/afs-history": "^1.1.0",
|
|
97
|
-
"@aigne/secrets": "^0.1.1-beta.3",
|
|
98
97
|
"@aigne/aigne-hub": "^0.10.11-beta.1",
|
|
99
98
|
"@aigne/core": "^1.69.1-beta",
|
|
99
|
+
"@aigne/secrets": "^0.1.1-beta.3",
|
|
100
100
|
"@aigne/default-memory": "^1.3.1-beta",
|
|
101
101
|
"@aigne/observability-api": "^0.11.10-beta",
|
|
102
102
|
"@aigne/openai": "^0.16.11-beta"
|