@aether-agent/cli 0.7.6 → 0.7.8
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 +18 -0
- package/README.md +4 -4
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.7.8](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.7...aether-agent-cli-v0.7.8) - 2026-05-31
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Add user level settings resolution ([#99](https://github.com/contextbridge/aether/pull/99))
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- *(aether-cli)* Onboarding ([#112](https://github.com/contextbridge/aether/pull/112))
|
|
14
|
+
- *(aether-cli)* Update system prompts and mcp server connections when switching agents ([#110](https://github.com/contextbridge/aether/pull/110))
|
|
15
|
+
- *(aether-cli)* Start MCP servers concurrently to avoid blocking TUI ([#106](https://github.com/contextbridge/aether/pull/106))
|
|
16
|
+
|
|
17
|
+
## [0.7.7](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.6...aether-agent-cli-v0.7.7) - 2026-05-21
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- *(aether-cli)* Prompt history search ([#96](https://github.com/contextbridge/aether/pull/96))
|
|
22
|
+
|
|
5
23
|
## [0.7.6](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.5...aether-agent-cli-v0.7.6) - 2026-05-18
|
|
6
24
|
|
|
7
25
|
### Fixed
|
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ The Aether CLI ships as a single binary, **`aether`**, with subcommands for each
|
|
|
5
5
|
- `aether` — interactive TUI (default when run with no args)
|
|
6
6
|
- `aether headless` — single-prompt headless run for scripting/CI
|
|
7
7
|
- `aether acp` — [Agent Client Protocol (ACP)](https://agentclientprotocol.com/overview/introduction) server for editor/IDE integration (e.g. Zed)
|
|
8
|
-
- `aether
|
|
8
|
+
- `aether settings init --user|--project` — initialize user or project settings
|
|
9
9
|
- `aether show-prompt` — print the fully-assembled system prompt (debugging)
|
|
10
10
|
|
|
11
11
|
## Table of Contents
|
|
@@ -63,7 +63,7 @@ cargo build --release -p aether-agent-cli
|
|
|
63
63
|
aether
|
|
64
64
|
```
|
|
65
65
|
|
|
66
|
-
If
|
|
66
|
+
If neither user settings nor project settings exist, the binary launches user-level onboarding before starting the TUI. To initialize explicitly, run `aether settings init --user` for personal defaults or `aether settings init --project` from a repository root for project-local agents.
|
|
67
67
|
|
|
68
68
|
### Headless
|
|
69
69
|
|
|
@@ -185,7 +185,7 @@ $ARGUMENTS
|
|
|
185
185
|
|
|
186
186
|
## Settings
|
|
187
187
|
|
|
188
|
-
Project-level agent configuration lives in `.aether/settings.json` at your project root.
|
|
188
|
+
User-level settings live in `$AETHER_HOME/settings.json` or `~/.aether/settings.json`. Project-level agent configuration lives in `.aether/settings.json` at your project root. Aether loads user settings first, then project settings; project agents with matching names override user agents. Settings define agents (modes and sub-agents), default prompts, and default MCP server configuration.
|
|
189
189
|
|
|
190
190
|
### Agents (Modes and Sub-agents)
|
|
191
191
|
|
|
@@ -239,7 +239,7 @@ Define agents with specific model, prompts, and tool configurations:
|
|
|
239
239
|
- **`agentInvocable: true`** — Agent can be spawned as a sub-agent
|
|
240
240
|
- **`tools`** — Filter which MCP tools the agent can use (optional). Supports `allow` (allowlist) and `deny` (blocklist) with trailing `*` wildcards. 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
|
-
You can scaffold settings interactively via `aether
|
|
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
|
|
|
244
244
|
## Logs
|
|
245
245
|
|
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.8"
|
|
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.8"
|
|
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.8"
|
|
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.8",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|