@aether-agent/cli 0.7.18 → 0.7.20
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 +19 -0
- package/README.md +2 -3
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.7.20](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.19...aether-agent-cli-v0.7.20) - 2026-06-30
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- *(mcp-servers)* Make agent fail fast when asked to modify files after using "/plan" cmd from plan MCP ([#207](https://github.com/contextbridge/aether/pull/207))
|
|
10
|
+
|
|
11
|
+
### Other
|
|
12
|
+
|
|
13
|
+
- *(aether-cli)* Consolidate and cleanup slash command expansion… ([#208](https://github.com/contextbridge/aether/pull/208))
|
|
14
|
+
- *(aether-cli)* Trim session logs by not logging partial, streamin… ([#202](https://github.com/contextbridge/aether/pull/202))
|
|
15
|
+
- *(mcp-servers)* Remove MCP roots functionality ([#199](https://github.com/contextbridge/aether/pull/199))
|
|
16
|
+
- *(aether-cli)* Remove old notes tools as they're subsumed by skills and rules ([#195](https://github.com/contextbridge/aether/pull/195))
|
|
17
|
+
|
|
18
|
+
## [0.7.19](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.18...aether-agent-cli-v0.7.19) - 2026-06-22
|
|
19
|
+
|
|
20
|
+
### Other
|
|
21
|
+
|
|
22
|
+
- updated the following local packages: aether-llm, aether-lspd, aether-mcp-utils, aether-acp-utils, aether-acp-utils, aether-agent-core, aether-project, aether-mcp-servers, aether-wisp
|
|
23
|
+
|
|
5
24
|
## [0.7.18](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.17...aether-agent-cli-v0.7.18) - 2026-06-22
|
|
6
25
|
|
|
7
26
|
### Other
|
package/README.md
CHANGED
|
@@ -142,8 +142,7 @@ The `mcp.json` file configures MCP tool servers:
|
|
|
142
142
|
"type": "in-memory",
|
|
143
143
|
"args": [
|
|
144
144
|
"--dir", ".aether/skills",
|
|
145
|
-
"--dir", ".claude/skills"
|
|
146
|
-
"--notes-dir", ".aether/notes"
|
|
145
|
+
"--dir", ".claude/skills"
|
|
147
146
|
]
|
|
148
147
|
}
|
|
149
148
|
}
|
|
@@ -177,7 +176,7 @@ $ARGUMENTS
|
|
|
177
176
|
- `argumentHint` — optional hint string for the argument
|
|
178
177
|
- `userInvocable` — exposes the prompt as a `/slash-command`
|
|
179
178
|
- `agentInvocable` — exposes the prompt as a skill that other agents can `get_skills` against
|
|
180
|
-
- `tags` — used by the `
|
|
179
|
+
- `tags` — used by the `list_skills` discovery surface
|
|
181
180
|
|
|
182
181
|
**Parameter syntax in the body:**
|
|
183
182
|
- `$ARGUMENTS` — full argument string (e.g. `/plan add user auth` → `add user auth`)
|
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.20"
|
|
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.20"
|
|
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.20"
|
|
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.20",
|
|
70
70
|
"volta": {
|
|
71
71
|
"node": "18.14.1",
|
|
72
72
|
"npm": "9.5.0"
|