@aigne/cli 1.51.0-beta.8 → 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,12 @@
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
+
3
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)
4
11
 
5
12
 
@@ -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.8",
3
+ "version": "1.51.0-beta.9",
4
4
  "description": "Your command center for agent development",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -89,13 +89,13 @@
89
89
  "yoctocolors-cjs": "^2.1.3",
90
90
  "zod": "^3.25.67",
91
91
  "zod-to-json-schema": "^3.24.6",
92
+ "@aigne/agent-library": "^1.21.48-beta.7",
92
93
  "@aigne/afs-system-fs": "^1.0.1-beta.3",
93
94
  "@aigne/agentic-memory": "^1.0.48-beta.7",
94
- "@aigne/aigne-hub": "^0.10.2-beta.7",
95
95
  "@aigne/core": "^1.63.0-beta.7",
96
- "@aigne/agent-library": "^1.21.48-beta.7",
97
- "@aigne/default-memory": "^1.2.11-beta.7",
96
+ "@aigne/aigne-hub": "^0.10.2-beta.7",
98
97
  "@aigne/observability-api": "^0.11.2-beta.2",
98
+ "@aigne/default-memory": "^1.2.11-beta.7",
99
99
  "@aigne/openai": "^0.16.2-beta.7"
100
100
  },
101
101
  "devDependencies": {