@aigne/cli 1.10.0 → 1.11.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,44 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.11.0](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.10.1...cli-v1.11.0) (2025-05-29)
4
+
5
+
6
+ ### Features
7
+
8
+ * add memory agents support for client agent ([#139](https://github.com/AIGNE-io/aigne-framework/issues/139)) ([57044fa](https://github.com/AIGNE-io/aigne-framework/commit/57044fa87b8abcba395cd05f941d6d312ab65764))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/anthropic bumped to 0.2.1
16
+ * @aigne/bedrock bumped to 0.2.1
17
+ * @aigne/core bumped to 1.18.0
18
+ * @aigne/deepseek bumped to 0.2.1
19
+ * @aigne/gemini bumped to 0.2.1
20
+ * @aigne/ollama bumped to 0.2.1
21
+ * @aigne/open-router bumped to 0.2.1
22
+ * @aigne/openai bumped to 0.2.1
23
+ * @aigne/xai bumped to 0.2.1
24
+
25
+ ## [1.10.1](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.10.0...cli-v1.10.1) (2025-05-25)
26
+
27
+
28
+ ### Dependencies
29
+
30
+ * The following workspace dependencies were updated
31
+ * dependencies
32
+ * @aigne/anthropic bumped to 0.2.0
33
+ * @aigne/bedrock bumped to 0.2.0
34
+ * @aigne/core bumped to 1.17.0
35
+ * @aigne/deepseek bumped to 0.2.0
36
+ * @aigne/gemini bumped to 0.2.0
37
+ * @aigne/ollama bumped to 0.2.0
38
+ * @aigne/open-router bumped to 0.2.0
39
+ * @aigne/openai bumped to 0.2.0
40
+ * @aigne/xai bumped to 0.2.0
41
+
3
42
  ## [1.10.0](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.9.1...cli-v1.10.0) (2025-05-23)
4
43
 
5
44
 
@@ -12,7 +12,7 @@ export declare class TerminalTracer {
12
12
  private tasks;
13
13
  run(agent: Agent, input: Message): Promise<{
14
14
  result: Message;
15
- context: Context;
15
+ context: Context<import("@aigne/core").UserContext>;
16
16
  }>;
17
17
  formatTokenUsage(usage: Partial<ContextUsage>, extra?: {
18
18
  [key: string]: string;
@@ -28,5 +28,5 @@ export declare function runAgentWithAIGNE(aigne: AIGNE, agent: Agent, { chatLoop
28
28
  modelOptions?: ChatModelOptions;
29
29
  } & RunAIGNECommandOptions): Promise<{
30
30
  result: import("@aigne/core").Message;
31
- context: import("@aigne/core").Context;
31
+ context: import("@aigne/core").Context<import("@aigne/core").UserContext>;
32
32
  } | undefined>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/cli",
3
- "version": "1.10.0",
3
+ "version": "1.11.0",
4
4
  "description": "cli for AIGNE framework",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -48,16 +48,17 @@
48
48
  "prettier": "^3.5.3",
49
49
  "pretty-error": "^4.0.0",
50
50
  "tar": "^7.4.3",
51
+ "wrap-ansi": "^9.0.0",
51
52
  "zod": "^3.24.4",
52
- "@aigne/anthropic": "^0.1.0",
53
- "@aigne/bedrock": "^0.1.0",
54
- "@aigne/core": "^1.16.0",
55
- "@aigne/deepseek": "^0.1.0",
56
- "@aigne/ollama": "^0.1.0",
57
- "@aigne/open-router": "^0.1.0",
58
- "@aigne/gemini": "^0.1.0",
59
- "@aigne/openai": "^0.1.0",
60
- "@aigne/xai": "^0.1.0"
53
+ "@aigne/anthropic": "^0.2.1",
54
+ "@aigne/bedrock": "^0.2.1",
55
+ "@aigne/core": "^1.18.0",
56
+ "@aigne/deepseek": "^0.2.1",
57
+ "@aigne/ollama": "^0.2.1",
58
+ "@aigne/gemini": "^0.2.1",
59
+ "@aigne/open-router": "^0.2.1",
60
+ "@aigne/openai": "^0.2.1",
61
+ "@aigne/xai": "^0.2.1"
61
62
  },
62
63
  "devDependencies": {
63
64
  "@types/archiver": "^6.0.3",