@aigne/cli 1.59.0-beta.14 → 1.59.0-beta.16

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,32 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.59.0-beta.16](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.59.0-beta.15...cli-v1.59.0-beta.16) (2026-01-07)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @aigne/afs-local-fs bumped to 1.4.0-beta.13
11
+
12
+ ## [1.59.0-beta.15](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.59.0-beta.14...cli-v1.59.0-beta.15) (2026-01-07)
13
+
14
+
15
+ ### Dependencies
16
+
17
+ * The following workspace dependencies were updated
18
+ * dependencies
19
+ * @aigne/afs-local-fs bumped to 1.4.0-beta.12
20
+ * @aigne/agent-library bumped to 1.24.0-beta.14
21
+ * @aigne/agentic-memory bumped to 1.1.6-beta.12
22
+ * @aigne/aigne-hub bumped to 0.10.16-beta.16
23
+ * @aigne/core bumped to 1.72.0-beta.12
24
+ * @aigne/default-memory bumped to 1.4.0-beta.11
25
+ * @aigne/openai bumped to 0.16.16-beta.12
26
+ * @aigne/secrets bumped to 0.1.6-beta.12
27
+ * devDependencies
28
+ * @aigne/test-utils bumped to 0.5.69-beta.12
29
+
3
30
  ## [1.59.0-beta.14](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.59.0-beta.13...cli-v1.59.0-beta.14) (2026-01-06)
4
31
 
5
32
 
@@ -46,21 +46,6 @@ export function createRunSkillCommand() {
46
46
  taskRenderMode: "collapse",
47
47
  skills: [
48
48
  new BashAgent({
49
- description: `\
50
- Execute bash scripts and return stdout and stderr output.
51
-
52
- When to use:
53
- - Running system commands (git, curl, etc.)
54
- - Executing build tools (npm, pip, make, etc.)
55
- - Running code scripts (python, node, etc.)
56
-
57
- Important:
58
- - Do NOT use bash for file operations. Use AFS tools instead (afs_list, afs_read, afs_write, afs_edit, afs_search).
59
- - Do NOT use 'cd'. The working directory is already set to workspace. Use relative paths directly.
60
- - Do NOT use 'npm i -g' or 'pip install --user'. Install dependencies locally in workspace:
61
- - For Node.js: Use 'npm install <pkg>' (local) or 'npx <pkg>' (one-time run without install).
62
- - For Python: Use 'pip install <pkg> -t .' or 'python -m venv .venv && source .venv/bin/activate && pip install <pkg>'.
63
- `,
64
49
  sandbox: false,
65
50
  permissions: {
66
51
  defaultMode: "ask",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/cli",
3
- "version": "1.59.0-beta.14",
3
+ "version": "1.59.0-beta.16",
4
4
  "description": "Your command center for agent development",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -91,16 +91,16 @@
91
91
  "zod": "^3.25.67",
92
92
  "zod-to-json-schema": "^3.24.6",
93
93
  "@aigne/afs": "^1.4.0-beta.6",
94
+ "@aigne/afs-local-fs": "^1.4.0-beta.13",
95
+ "@aigne/agentic-memory": "^1.1.6-beta.12",
96
+ "@aigne/agent-library": "^1.24.0-beta.14",
94
97
  "@aigne/afs-history": "^1.2.0-beta.7",
95
- "@aigne/afs-local-fs": "^1.4.0-beta.11",
96
- "@aigne/agent-library": "^1.24.0-beta.13",
97
- "@aigne/agentic-memory": "^1.1.6-beta.11",
98
- "@aigne/aigne-hub": "^0.10.16-beta.15",
99
- "@aigne/core": "^1.72.0-beta.11",
98
+ "@aigne/aigne-hub": "^0.10.16-beta.16",
99
+ "@aigne/core": "^1.72.0-beta.12",
100
+ "@aigne/default-memory": "^1.4.0-beta.11",
101
+ "@aigne/openai": "^0.16.16-beta.12",
100
102
  "@aigne/observability-api": "^0.11.14-beta.1",
101
- "@aigne/openai": "^0.16.16-beta.11",
102
- "@aigne/default-memory": "^1.4.0-beta.10",
103
- "@aigne/secrets": "^0.1.6-beta.11"
103
+ "@aigne/secrets": "^0.1.6-beta.12"
104
104
  },
105
105
  "devDependencies": {
106
106
  "@inquirer/testing": "^2.1.50",
@@ -117,7 +117,7 @@
117
117
  "rimraf": "^6.0.1",
118
118
  "typescript": "^5.9.2",
119
119
  "ufo": "^1.6.1",
120
- "@aigne/test-utils": "^0.5.69-beta.11"
120
+ "@aigne/test-utils": "^0.5.69-beta.12"
121
121
  },
122
122
  "scripts": {
123
123
  "lint": "tsc --noEmit",