@aether-agent/cli 0.7.13 → 0.7.15

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
@@ -2,6 +2,27 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.7.15](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.14...aether-agent-cli-v0.7.15) - 2026-06-18
6
+
7
+ ### Added
8
+
9
+ - *(aether-evals)* Drive dockerized agents under eval via ACP ([#161](https://github.com/contextbridge/aether/pull/161))
10
+
11
+ ### Fixed
12
+
13
+ - Small fixes ([#164](https://github.com/contextbridge/aether/pull/164))
14
+
15
+ ### Other
16
+
17
+ - Better experience for authoring evals ([#162](https://github.com/contextbridge/aether/pull/162))
18
+ - Move a bunch of errors to using thiserror ([#160](https://github.com/contextbridge/aether/pull/160))
19
+
20
+ ## [0.7.14](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.13...aether-agent-cli-v0.7.14) - 2026-06-13
21
+
22
+ ### Other
23
+
24
+ - 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
25
+
5
26
  ## [0.7.13](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.12...aether-agent-cli-v0.7.13) - 2026-06-13
6
27
 
7
28
  ### Added
@@ -4,7 +4,8 @@
4
4
  "packages": {
5
5
  "": {
6
6
  "bin": {
7
- "aether": "run-aether.js"
7
+ "aether": "run-aether.js",
8
+ "aether-schemas": "run-aether-schemas.js"
8
9
  },
9
10
  "dependencies": {
10
11
  "axios": "^1.13.5",
@@ -23,7 +24,7 @@
23
24
  "hasInstallScript": true,
24
25
  "license": "MIT",
25
26
  "name": "@aether-agent/cli",
26
- "version": "0.7.13"
27
+ "version": "0.7.15"
27
28
  },
28
29
  "node_modules/@isaacs/cliui": {
29
30
  "engines": {
@@ -542,5 +543,5 @@
542
543
  }
543
544
  },
544
545
  "requires": true,
545
- "version": "0.7.13"
546
+ "version": "0.7.15"
546
547
  }
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "artifactDownloadUrls": [
3
- "https://github.com/contextbridge/aether/releases/download/aether-agent-cli-v0.7.13"
3
+ "https://github.com/contextbridge/aether/releases/download/aether-agent-cli-v0.7.15"
4
4
  ],
5
5
  "bin": {
6
- "aether": "run-aether.js"
6
+ "aether": "run-aether.js",
7
+ "aether-schemas": "run-aether-schemas.js"
7
8
  },
8
9
  "dependencies": {
9
10
  "axios": "^1.13.5",
@@ -47,26 +48,29 @@
47
48
  "aarch64-apple-darwin": {
48
49
  "artifactName": "aether-agent-cli-aarch64-apple-darwin.tar.xz",
49
50
  "bins": {
50
- "aether": "aether"
51
+ "aether": "aether",
52
+ "aether-schemas": "aether-schemas"
51
53
  },
52
54
  "zipExt": ".tar.xz"
53
55
  },
54
56
  "aarch64-unknown-linux-gnu": {
55
57
  "artifactName": "aether-agent-cli-aarch64-unknown-linux-gnu.tar.xz",
56
58
  "bins": {
57
- "aether": "aether"
59
+ "aether": "aether",
60
+ "aether-schemas": "aether-schemas"
58
61
  },
59
62
  "zipExt": ".tar.xz"
60
63
  },
61
64
  "x86_64-unknown-linux-gnu": {
62
65
  "artifactName": "aether-agent-cli-x86_64-unknown-linux-gnu.tar.xz",
63
66
  "bins": {
64
- "aether": "aether"
67
+ "aether": "aether",
68
+ "aether-schemas": "aether-schemas"
65
69
  },
66
70
  "zipExt": ".tar.xz"
67
71
  }
68
72
  },
69
- "version": "0.7.13",
73
+ "version": "0.7.15",
70
74
  "volta": {
71
75
  "node": "18.14.1",
72
76
  "npm": "9.5.0"
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { run } = require("./binary");
4
+ run("aether-schemas");