@aether-agent/cli 0.7.16 → 0.7.17

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,16 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.7.17](https://github.com/contextbridge/aether/compare/aether-agent-cli-v0.7.16...aether-agent-cli-v0.7.17) - 2026-06-19
6
+
7
+ ### Added
8
+
9
+ - *(aether-cli)* Add model settings to be able to control temperature, top p etc ([#168](https://github.com/contextbridge/aether/pull/168))
10
+
11
+ ### Other
12
+
13
+ - Cleanup experimental eval APIs ([#171](https://github.com/contextbridge/aether/pull/171))
14
+
5
15
  ## [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
16
 
7
17
  ### Added
@@ -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.16"
26
+ "version": "0.7.17"
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.16"
545
+ "version": "0.7.17"
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.16"
3
+ "https://github.com/contextbridge/aether/releases/download/aether-agent-cli-v0.7.17"
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.16",
69
+ "version": "0.7.17",
74
70
  "volta": {
75
71
  "node": "18.14.1",
76
72
  "npm": "9.5.0"
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- const { run } = require("./binary");
4
- run("aether-schemas");