@aigne/cli 1.44.0 → 1.44.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 CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.44.1](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.44.0...cli-v1.44.1) (2025-09-05)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * should not return local path from aigne hub service ([#460](https://github.com/AIGNE-io/aigne-framework/issues/460)) ([c959717](https://github.com/AIGNE-io/aigne-framework/commit/c95971774f7e84dbeb3313f60b3e6464e2bb22e4))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/agent-library bumped to 1.21.38
16
+ * @aigne/agentic-memory bumped to 1.0.38
17
+ * @aigne/aigne-hub bumped to 0.8.8
18
+ * @aigne/core bumped to 1.58.1
19
+ * @aigne/default-memory bumped to 1.2.1
20
+ * @aigne/openai bumped to 0.14.1
21
+ * devDependencies
22
+ * @aigne/test-utils bumped to 0.5.45
23
+
3
24
  ## [1.44.0](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.43.1...cli-v1.44.0) (2025-09-05)
4
25
 
5
26
 
@@ -231,7 +231,9 @@ export class TerminalTracer {
231
231
  });
232
232
  return retry;
233
233
  })();
234
- return this.buyCreditsPromptPromise.finally(() => {
234
+ return this.buyCreditsPromptPromise
235
+ .catch(() => "exit")
236
+ .finally(() => {
235
237
  // Clear the promise so that we can show the prompt again if needed
236
238
  this.buyCreditsPromptPromise = undefined;
237
239
  });
@@ -62,6 +62,12 @@ export async function runWithAIGNE(agentCreator, { argv = process.argv, chatLoop
62
62
  })
63
63
  .alias("h", "help")
64
64
  .alias("v", "version")
65
+ .fail((message, error, yargs) => {
66
+ if (!error)
67
+ yargs.showHelp();
68
+ console.error(`\n${message || error?.message}`);
69
+ process.exit(1);
70
+ })
65
71
  .parseAsync(hideBin(argv))
66
72
  .catch((error) => {
67
73
  console.error(`${chalk.red("Error:")} ${error.message}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/cli",
3
- "version": "1.44.0",
3
+ "version": "1.44.1",
4
4
  "description": "Your command center for agent development",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -81,12 +81,12 @@
81
81
  "yargs": "^18.0.0",
82
82
  "yoctocolors-cjs": "^2.1.3",
83
83
  "zod": "^3.25.67",
84
- "@aigne/agent-library": "^1.21.37",
85
- "@aigne/core": "^1.58.0",
86
- "@aigne/default-memory": "^1.2.0",
87
- "@aigne/aigne-hub": "^0.8.7",
88
- "@aigne/openai": "^0.14.0",
89
- "@aigne/agentic-memory": "^1.0.37",
84
+ "@aigne/agentic-memory": "^1.0.38",
85
+ "@aigne/agent-library": "^1.21.38",
86
+ "@aigne/aigne-hub": "^0.8.8",
87
+ "@aigne/core": "^1.58.1",
88
+ "@aigne/default-memory": "^1.2.1",
89
+ "@aigne/openai": "^0.14.1",
90
90
  "@aigne/observability-api": "^0.10.2"
91
91
  },
92
92
  "devDependencies": {
@@ -104,7 +104,7 @@
104
104
  "rimraf": "^6.0.1",
105
105
  "typescript": "^5.8.3",
106
106
  "ufo": "^1.6.1",
107
- "@aigne/test-utils": "^0.5.44"
107
+ "@aigne/test-utils": "^0.5.45"
108
108
  },
109
109
  "scripts": {
110
110
  "lint": "tsc --noEmit",