@aether-agent/cli 0.7.12 → 0.7.14
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 +14 -0
- package/README.md +2 -2
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.7.14](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.13...aether-agent-cli-v0.7.14) - 2026-06-13
|
|
6
|
+
|
|
7
|
+
### Other
|
|
8
|
+
|
|
9
|
+
- updated the following local packages: aether-llm, aether-lspd, aether-mcp-utils, aether-acp-utils, aether-acp-utils, aether-agent-core, aether-project, aether-wisp, aether-evals, aether-mcp-servers
|
|
10
|
+
|
|
11
|
+
## [0.7.13](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.12...aether-agent-cli-v0.7.13) - 2026-06-13
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- *(aether-cli)* Allow filtering mcp tools by annotation ([#151](https://github.com/contextbridge/aether/pull/151))
|
|
16
|
+
- *(aether-cli)* Add /move command to switch workspaces and bring your session + changes with you. ([#150](https://github.com/contextbridge/aether/pull/150))
|
|
17
|
+
- *(aether-cli)* Better session resume menu ([#145](https://github.com/contextbridge/aether/pull/145))
|
|
18
|
+
|
|
5
19
|
## [0.7.12](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.11...aether-agent-cli-v0.7.12) - 2026-06-10
|
|
6
20
|
|
|
7
21
|
### Added
|
package/README.md
CHANGED
|
@@ -214,7 +214,7 @@ Define agents with specific model, prompts, and tool configurations:
|
|
|
214
214
|
"prompts": [".aether/prompts/researcher.md"],
|
|
215
215
|
"mcps": [".aether/researcher-mcp.json"],
|
|
216
216
|
"tools": {
|
|
217
|
-
"allow": [
|
|
217
|
+
"allow": [{ "readOnly": true }],
|
|
218
218
|
"deny": []
|
|
219
219
|
}
|
|
220
220
|
},
|
|
@@ -237,7 +237,7 @@ Define agents with specific model, prompts, and tool configurations:
|
|
|
237
237
|
- **Agent `mcps`** — Optional ordered MCP config sources that override top-level `mcps` for that agent. Supports the same string shorthand and typed objects as top-level `mcps`.
|
|
238
238
|
- **`userInvocable: true`** — Agent appears as a mode option in ACP clients (e.g., Wisp's Shift+Tab)
|
|
239
239
|
- **`agentInvocable: true`** — Agent can be spawned as a sub-agent
|
|
240
|
-
- **`tools`** — Filter which MCP tools the agent can use (optional). Supports `allow` (allowlist) and `deny` (blocklist)
|
|
240
|
+
- **`tools`** — Filter which MCP tools the agent can use (optional). Supports `allow` (allowlist) and `deny` (blocklist) entries. Entries can be exact/trailing-`*` name patterns such as `coding__read_file` or annotation matchers such as `{ "readOnly": true }`, `{ "destructive": false }`, `{ "idempotent": true }`, and `{ "openWorld": false }`. If both are set, `allow` is applied first, then `deny` removes from the result. Omit or leave empty to allow all tools.
|
|
241
241
|
|
|
242
242
|
You can scaffold settings interactively via `aether settings init --user` or `aether settings init --project`. Edit the generated settings JSON directly to customize agents.
|
|
243
243
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"name": "@aether-agent/cli",
|
|
26
|
-
"version": "0.7.
|
|
26
|
+
"version": "0.7.14"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/cliui": {
|
|
29
29
|
"engines": {
|
|
@@ -542,5 +542,5 @@
|
|
|
542
542
|
}
|
|
543
543
|
},
|
|
544
544
|
"requires": true,
|
|
545
|
-
"version": "0.7.
|
|
545
|
+
"version": "0.7.14"
|
|
546
546
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"artifactDownloadUrls": [
|
|
3
|
-
"https://github.com/contextbridge/aether/releases/download/aether-agent-cli-v0.7.
|
|
3
|
+
"https://github.com/contextbridge/aether/releases/download/aether-agent-cli-v0.7.14"
|
|
4
4
|
],
|
|
5
5
|
"bin": {
|
|
6
6
|
"aether": "run-aether.js"
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"zipExt": ".tar.xz"
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
|
-
"version": "0.7.
|
|
69
|
+
"version": "0.7.14",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|