@aigne/cli 1.51.0-beta.7 → 1.51.0-beta.9

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.51.0-beta.9](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.51.0-beta.8...cli-v1.51.0-beta.9) (2025-10-16)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * ensure tips are only printed once during AIGNE loading ([#628](https://github.com/AIGNE-io/aigne-framework/issues/628)) ([7d49508](https://github.com/AIGNE-io/aigne-framework/commit/7d4950882436169986eedab75c232db2c0a30732))
9
+
10
+ ## [1.51.0-beta.8](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.51.0-beta.7...cli-v1.51.0-beta.8) (2025-10-15)
11
+
12
+
13
+ ### Dependencies
14
+
15
+ * The following workspace dependencies were updated
16
+ * dependencies
17
+ * @aigne/afs-system-fs bumped to 1.0.1-beta.3
18
+ * @aigne/agent-library bumped to 1.21.48-beta.7
19
+ * @aigne/agentic-memory bumped to 1.0.48-beta.7
20
+ * @aigne/aigne-hub bumped to 0.10.2-beta.7
21
+ * @aigne/core bumped to 1.63.0-beta.7
22
+ * @aigne/default-memory bumped to 1.2.11-beta.7
23
+ * @aigne/openai bumped to 0.16.2-beta.7
24
+ * devDependencies
25
+ * @aigne/test-utils bumped to 0.5.55-beta.7
26
+
3
27
  ## [1.51.0-beta.7](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.51.0-beta.6...cli-v1.51.0-beta.7) (2025-10-15)
4
28
 
5
29
 
@@ -111,7 +111,7 @@ async function loadApplication(path) {
111
111
  }
112
112
  // Load env files in the aigne directory
113
113
  config({ path: dir, silent: true });
114
- const aigne = await loadAIGNE({ path: dir, printTips: false });
114
+ const aigne = await loadAIGNE({ path: dir });
115
115
  return { aigne, path: dir };
116
116
  }
117
117
  async function downloadPackage(url, cacheDir) {
@@ -21,7 +21,7 @@ async function printChatModelInfoBox(model) {
21
21
  console.log(boxen(lines.join("\n"), { padding: 1, borderStyle: "classic", borderColor: "cyan" }));
22
22
  console.log("");
23
23
  }
24
- export async function loadAIGNE({ path, modelOptions, imageModelOptions, printTips = true, skipModelLoading = false, }) {
24
+ export async function loadAIGNE({ path, modelOptions, imageModelOptions, printTips = false, skipModelLoading = false, }) {
25
25
  let aigne;
26
26
  if (path) {
27
27
  aigne = await AIGNE.load(path, {
@@ -52,6 +52,7 @@ export async function invokeCLIAgentFromDirInChildProcess(options) {
52
52
  const aigne = await loadAIGNE({
53
53
  path: options.dir,
54
54
  modelOptions: options.input,
55
+ printTips: true,
55
56
  imageModelOptions: {
56
57
  model: options.input.imageModel,
57
58
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/cli",
3
- "version": "1.51.0-beta.7",
3
+ "version": "1.51.0-beta.9",
4
4
  "description": "Your command center for agent development",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -89,14 +89,14 @@
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-system-fs": "^1.0.1-beta.2",
93
- "@aigne/agent-library": "^1.21.48-beta.6",
94
- "@aigne/aigne-hub": "^0.10.2-beta.6",
95
- "@aigne/agentic-memory": "^1.0.48-beta.6",
96
- "@aigne/core": "^1.63.0-beta.6",
92
+ "@aigne/agent-library": "^1.21.48-beta.7",
93
+ "@aigne/afs-system-fs": "^1.0.1-beta.3",
94
+ "@aigne/agentic-memory": "^1.0.48-beta.7",
95
+ "@aigne/core": "^1.63.0-beta.7",
96
+ "@aigne/aigne-hub": "^0.10.2-beta.7",
97
97
  "@aigne/observability-api": "^0.11.2-beta.2",
98
- "@aigne/openai": "^0.16.2-beta.6",
99
- "@aigne/default-memory": "^1.2.11-beta.6"
98
+ "@aigne/default-memory": "^1.2.11-beta.7",
99
+ "@aigne/openai": "^0.16.2-beta.7"
100
100
  },
101
101
  "devDependencies": {
102
102
  "@inquirer/testing": "^2.1.50",
@@ -113,7 +113,7 @@
113
113
  "rimraf": "^6.0.1",
114
114
  "typescript": "^5.9.2",
115
115
  "ufo": "^1.6.1",
116
- "@aigne/test-utils": "^0.5.55-beta.6"
116
+ "@aigne/test-utils": "^0.5.55-beta.7"
117
117
  },
118
118
  "scripts": {
119
119
  "lint": "tsc --noEmit",