@aigne/cli 1.14.0 → 1.15.0

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,53 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.15.0](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.14.1...cli-v1.15.0) (2025-06-29)
4
+
5
+
6
+ ### Features
7
+
8
+ * **observability:** tune trace ux and supoort incremental exporting ([#184](https://github.com/AIGNE-io/aigne-framework/issues/184)) ([d174188](https://github.com/AIGNE-io/aigne-framework/commit/d174188459c77acb09b5ca040972f83abb067587))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/agent-library bumped to 1.17.2
16
+ * @aigne/anthropic bumped to 0.3.9
17
+ * @aigne/bedrock bumped to 0.3.9
18
+ * @aigne/core bumped to 1.25.0
19
+ * @aigne/deepseek bumped to 0.3.9
20
+ * @aigne/gemini bumped to 0.3.9
21
+ * @aigne/observability bumped to 0.2.0
22
+ * @aigne/ollama bumped to 0.3.9
23
+ * @aigne/open-router bumped to 0.3.9
24
+ * @aigne/openai bumped to 0.4.2
25
+ * @aigne/xai bumped to 0.3.9
26
+
27
+ ## [1.14.1](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.14.0...cli-v1.14.1) (2025-06-26)
28
+
29
+
30
+ ### Bug Fixes
31
+
32
+ * agine cli not found package ([#185](https://github.com/AIGNE-io/aigne-framework/issues/185)) ([5d98b61](https://github.com/AIGNE-io/aigne-framework/commit/5d98b6158f1e43e049a3a51a69bab88092bf1c92))
33
+
34
+
35
+ ### Dependencies
36
+
37
+ * The following workspace dependencies were updated
38
+ * dependencies
39
+ * @aigne/agent-library bumped to 1.17.1
40
+ * @aigne/anthropic bumped to 0.3.8
41
+ * @aigne/bedrock bumped to 0.3.8
42
+ * @aigne/core bumped to 1.24.1
43
+ * @aigne/deepseek bumped to 0.3.8
44
+ * @aigne/gemini bumped to 0.3.8
45
+ * @aigne/observability bumped to 0.1.3
46
+ * @aigne/ollama bumped to 0.3.8
47
+ * @aigne/open-router bumped to 0.3.8
48
+ * @aigne/openai bumped to 0.4.1
49
+ * @aigne/xai bumped to 0.3.8
50
+
3
51
  ## [1.14.0](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.13.2...cli-v1.14.0) (2025-06-26)
4
52
 
5
53
 
@@ -1,6 +1,6 @@
1
1
  import { tryOrThrow } from "@aigne/core/utils/type-utils.js";
2
2
  import { startObservabilityCLIServer } from "@aigne/observability/cli";
3
- import { getObservabilityDbPath } from "@aigne/observability/db-path";
3
+ import getObservabilityDbPath from "@aigne/observability/db-path";
4
4
  import { Command } from "commander";
5
5
  import detectPort from "detect-port";
6
6
  const DEFAULT_PORT = () => tryOrThrow(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/cli",
3
- "version": "1.14.0",
3
+ "version": "1.15.0",
4
4
  "description": "cli for AIGNE framework",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -51,17 +51,18 @@
51
51
  "wrap-ansi": "^9.0.0",
52
52
  "yaml": "^2.7.1",
53
53
  "zod": "^3.24.4",
54
- "@aigne/agent-library": "^1.17.0",
55
- "@aigne/bedrock": "^0.3.7",
56
- "@aigne/anthropic": "^0.3.7",
57
- "@aigne/core": "^1.24.0",
58
- "@aigne/gemini": "^0.3.7",
59
- "@aigne/observability": "^0.1.2",
60
- "@aigne/deepseek": "^0.3.7",
61
- "@aigne/ollama": "^0.3.7",
62
- "@aigne/openai": "^0.4.0",
63
- "@aigne/open-router": "^0.3.7",
64
- "@aigne/xai": "^0.3.7"
54
+ "detect-port": "^2.1.0",
55
+ "@aigne/agent-library": "^1.17.2",
56
+ "@aigne/anthropic": "^0.3.9",
57
+ "@aigne/deepseek": "^0.3.9",
58
+ "@aigne/gemini": "^0.3.9",
59
+ "@aigne/bedrock": "^0.3.9",
60
+ "@aigne/ollama": "^0.3.9",
61
+ "@aigne/core": "^1.25.0",
62
+ "@aigne/observability": "^0.2.0",
63
+ "@aigne/open-router": "^0.3.9",
64
+ "@aigne/openai": "^0.4.2",
65
+ "@aigne/xai": "^0.3.9"
65
66
  },
66
67
  "devDependencies": {
67
68
  "@types/archiver": "^6.0.3",
@@ -71,7 +72,6 @@
71
72
  "@types/gradient-string": "^1.1.6",
72
73
  "@types/node": "^22.15.15",
73
74
  "archiver": "^7.0.1",
74
- "detect-port": "^2.1.0",
75
75
  "npm-run-all": "^4.1.5",
76
76
  "rimraf": "^6.0.1",
77
77
  "typescript": "^5.8.3",