@aigne/cli 1.28.0 → 1.29.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,31 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.29.0](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.28.0...cli-v1.29.0) (2025-07-31)
4
+
5
+
6
+ ### Features
7
+
8
+ * **cli:** add alias support for agent ([#297](https://github.com/AIGNE-io/aigne-framework/issues/297)) ([fa166ab](https://github.com/AIGNE-io/aigne-framework/commit/fa166ab66d19e89ddd32c34e1470450eb4fbdbbd))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/agent-library bumped to 1.21.8
16
+ * @aigne/agentic-memory bumped to 1.0.8
17
+ * @aigne/aigne-hub bumped to 0.3.2
18
+ * @aigne/anthropic bumped to 0.10.4
19
+ * @aigne/bedrock bumped to 0.8.8
20
+ * @aigne/core bumped to 1.41.0
21
+ * @aigne/deepseek bumped to 0.7.8
22
+ * @aigne/default-memory bumped to 1.0.8
23
+ * @aigne/gemini bumped to 0.8.8
24
+ * @aigne/ollama bumped to 0.7.8
25
+ * @aigne/open-router bumped to 0.7.8
26
+ * @aigne/openai bumped to 0.10.8
27
+ * @aigne/xai bumped to 0.7.8
28
+
3
29
  ## [1.28.0](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.27.0...cli-v1.28.0) (2025-07-31)
4
30
 
5
31
 
@@ -68,6 +68,7 @@ const agentCommandModule = ({ dir, agent, }) => {
68
68
  const inputSchema = agent.inputSchema instanceof ZodObject ? agent.inputSchema.shape : {};
69
69
  return {
70
70
  command: agent.name,
71
+ aliases: agent.alias || [],
71
72
  describe: agent.description || "",
72
73
  builder: (yargs) => {
73
74
  for (const [option, config] of Object.entries(inputSchema)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/cli",
3
- "version": "1.28.0",
3
+ "version": "1.29.0",
4
4
  "description": "cli for AIGNE framework",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -70,20 +70,20 @@
70
70
  "yaml": "^2.8.0",
71
71
  "yargs": "^18.0.0",
72
72
  "zod": "^3.25.67",
73
- "@aigne/agentic-memory": "^1.0.7",
74
- "@aigne/agent-library": "^1.21.7",
75
- "@aigne/aigne-hub": "^0.3.1",
76
- "@aigne/anthropic": "^0.10.3",
77
- "@aigne/bedrock": "^0.8.7",
78
- "@aigne/core": "^1.40.0",
79
- "@aigne/default-memory": "^1.0.7",
80
- "@aigne/gemini": "^0.8.7",
81
- "@aigne/deepseek": "^0.7.7",
73
+ "@aigne/agent-library": "^1.21.8",
74
+ "@aigne/aigne-hub": "^0.3.2",
75
+ "@aigne/anthropic": "^0.10.4",
76
+ "@aigne/bedrock": "^0.8.8",
77
+ "@aigne/core": "^1.41.0",
78
+ "@aigne/deepseek": "^0.7.8",
79
+ "@aigne/agentic-memory": "^1.0.8",
80
+ "@aigne/default-memory": "^1.0.8",
81
+ "@aigne/gemini": "^0.8.8",
82
82
  "@aigne/observability-api": "^0.8.2",
83
- "@aigne/ollama": "^0.7.7",
84
- "@aigne/open-router": "^0.7.7",
85
- "@aigne/openai": "^0.10.7",
86
- "@aigne/xai": "^0.7.7"
83
+ "@aigne/ollama": "^0.7.8",
84
+ "@aigne/open-router": "^0.7.8",
85
+ "@aigne/openai": "^0.10.8",
86
+ "@aigne/xai": "^0.7.8"
87
87
  },
88
88
  "devDependencies": {
89
89
  "@types/archiver": "^6.0.3",