@aether-agent/cli 0.7.16 → 0.7.18
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 +17 -0
- package/npm-shrinkwrap.json +3 -4
- package/package.json +6 -10
- package/run-aether-schemas.js +0 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [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
|
+
|
|
7
|
+
### Other
|
|
8
|
+
|
|
9
|
+
- *(aether-evals)* Expose token usage stats for evals ([#179](https://github.com/contextbridge/aether/pull/179))
|
|
10
|
+
- *(workspace)* Move Rust to crates/ and TS to packages/ ([#175](https://github.com/contextbridge/aether/pull/175))
|
|
11
|
+
|
|
12
|
+
## [0.7.17](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.16...aether-agent-cli-v0.7.17) - 2026-06-19
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- *(aether-cli)* Add model settings to be able to control temperature, top p etc ([#168](https://github.com/contextbridge/aether/pull/168))
|
|
17
|
+
|
|
18
|
+
### Other
|
|
19
|
+
|
|
20
|
+
- Cleanup experimental eval APIs ([#171](https://github.com/contextbridge/aether/pull/171))
|
|
21
|
+
|
|
5
22
|
## [0.7.16](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.15...aether-agent-cli-v0.7.16) - 2026-06-18
|
|
6
23
|
|
|
7
24
|
### Added
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -4,8 +4,7 @@
|
|
|
4
4
|
"packages": {
|
|
5
5
|
"": {
|
|
6
6
|
"bin": {
|
|
7
|
-
"aether": "run-aether.js"
|
|
8
|
-
"aether-schemas": "run-aether-schemas.js"
|
|
7
|
+
"aether": "run-aether.js"
|
|
9
8
|
},
|
|
10
9
|
"dependencies": {
|
|
11
10
|
"axios": "^1.13.5",
|
|
@@ -24,7 +23,7 @@
|
|
|
24
23
|
"hasInstallScript": true,
|
|
25
24
|
"license": "MIT",
|
|
26
25
|
"name": "@aether-agent/cli",
|
|
27
|
-
"version": "0.7.
|
|
26
|
+
"version": "0.7.18"
|
|
28
27
|
},
|
|
29
28
|
"node_modules/@isaacs/cliui": {
|
|
30
29
|
"engines": {
|
|
@@ -543,5 +542,5 @@
|
|
|
543
542
|
}
|
|
544
543
|
},
|
|
545
544
|
"requires": true,
|
|
546
|
-
"version": "0.7.
|
|
545
|
+
"version": "0.7.18"
|
|
547
546
|
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
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.18"
|
|
4
4
|
],
|
|
5
5
|
"bin": {
|
|
6
|
-
"aether": "run-aether.js"
|
|
7
|
-
"aether-schemas": "run-aether-schemas.js"
|
|
6
|
+
"aether": "run-aether.js"
|
|
8
7
|
},
|
|
9
8
|
"dependencies": {
|
|
10
9
|
"axios": "^1.13.5",
|
|
@@ -48,29 +47,26 @@
|
|
|
48
47
|
"aarch64-apple-darwin": {
|
|
49
48
|
"artifactName": "aether-agent-cli-aarch64-apple-darwin.tar.xz",
|
|
50
49
|
"bins": {
|
|
51
|
-
"aether": "aether"
|
|
52
|
-
"aether-schemas": "aether-schemas"
|
|
50
|
+
"aether": "aether"
|
|
53
51
|
},
|
|
54
52
|
"zipExt": ".tar.xz"
|
|
55
53
|
},
|
|
56
54
|
"aarch64-unknown-linux-gnu": {
|
|
57
55
|
"artifactName": "aether-agent-cli-aarch64-unknown-linux-gnu.tar.xz",
|
|
58
56
|
"bins": {
|
|
59
|
-
"aether": "aether"
|
|
60
|
-
"aether-schemas": "aether-schemas"
|
|
57
|
+
"aether": "aether"
|
|
61
58
|
},
|
|
62
59
|
"zipExt": ".tar.xz"
|
|
63
60
|
},
|
|
64
61
|
"x86_64-unknown-linux-gnu": {
|
|
65
62
|
"artifactName": "aether-agent-cli-x86_64-unknown-linux-gnu.tar.xz",
|
|
66
63
|
"bins": {
|
|
67
|
-
"aether": "aether"
|
|
68
|
-
"aether-schemas": "aether-schemas"
|
|
64
|
+
"aether": "aether"
|
|
69
65
|
},
|
|
70
66
|
"zipExt": ".tar.xz"
|
|
71
67
|
}
|
|
72
68
|
},
|
|
73
|
-
"version": "0.7.
|
|
69
|
+
"version": "0.7.18",
|
|
74
70
|
"volta": {
|
|
75
71
|
"node": "18.14.1",
|
|
76
72
|
"npm": "9.5.0"
|
package/run-aether-schemas.js
DELETED