aether-colony 1.0.17 → 1.0.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/README.md +14 -1
- package/lib/bootstrap.js +3 -18
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -24,6 +24,19 @@ The npm package version intentionally matches the published Go release version.
|
|
|
24
24
|
There is one public Aether version, not one version for npm and another for the
|
|
25
25
|
runtime.
|
|
26
26
|
|
|
27
|
+
## What is Aether?
|
|
28
|
+
|
|
29
|
+
If Claude Code, OpenCode, and Codex are the workers, Aether is the colony.
|
|
30
|
+
|
|
31
|
+
Aether is a Go runtime plus companion-file system for AI software delivery. It orchestrates planning, build, verification, recovery, and update workflows across the supported platforms so the system stays aligned instead of drifting into disconnected agent sessions.
|
|
32
|
+
|
|
33
|
+
## Aether is right for you if
|
|
34
|
+
|
|
35
|
+
- You want the easiest first install path
|
|
36
|
+
- You want the published Go runtime, not a separate Node runtime
|
|
37
|
+
- You want one install path that can hand off to the real `aether` CLI immediately
|
|
38
|
+
- You want the npm package version and the Aether release version to stay identical
|
|
39
|
+
|
|
27
40
|
## What happens on first run
|
|
28
41
|
|
|
29
42
|
1. The wrapper resolves the matching Aether release for your platform.
|
|
@@ -50,7 +63,7 @@ npx --yes aether-colony@latest -- init "Build feature X"
|
|
|
50
63
|
- `aether-colony` is the bootstrap and discovery path.
|
|
51
64
|
- The real runtime is the Go `aether` binary.
|
|
52
65
|
- After the first install, users should normally run `aether ...` directly.
|
|
53
|
-
- `aether-colony@1.0.
|
|
66
|
+
- `aether-colony@1.0.19` is expected to bootstrap Aether `1.0.19`.
|
|
54
67
|
|
|
55
68
|
## Source and docs
|
|
56
69
|
|
package/lib/bootstrap.js
CHANGED
|
@@ -123,12 +123,12 @@ function detectPlatform(nodePlatform = process.platform, nodeArch = process.arch
|
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
function archiveFilename(version, platform) {
|
|
126
|
-
|
|
127
|
-
return `aether_v${version}_${platform.os}_${platform.arch}${ext}`;
|
|
126
|
+
return `Aether_${version}_${platform.os}_${platform.arch}.tar.gz`;
|
|
128
127
|
}
|
|
129
128
|
|
|
130
129
|
function checksumsFilename(version) {
|
|
131
|
-
|
|
130
|
+
void version;
|
|
131
|
+
return "checksums.txt";
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
function releaseBaseURL(version) {
|
|
@@ -296,21 +296,6 @@ async function sha256File(filePath) {
|
|
|
296
296
|
|
|
297
297
|
function extractArchive(archivePath, extractDir, platform) {
|
|
298
298
|
fs.mkdirSync(extractDir, { recursive: true });
|
|
299
|
-
if (platform.os === "windows") {
|
|
300
|
-
execFileSync(
|
|
301
|
-
"powershell.exe",
|
|
302
|
-
[
|
|
303
|
-
"-NoLogo",
|
|
304
|
-
"-NoProfile",
|
|
305
|
-
"-NonInteractive",
|
|
306
|
-
"-Command",
|
|
307
|
-
`Expand-Archive -LiteralPath '${archivePath.replace(/'/g, "''")}' -DestinationPath '${extractDir.replace(/'/g, "''")}' -Force`
|
|
308
|
-
],
|
|
309
|
-
{ stdio: "ignore" }
|
|
310
|
-
);
|
|
311
|
-
return;
|
|
312
|
-
}
|
|
313
|
-
|
|
314
299
|
execFileSync("tar", ["-xzf", archivePath, "-C", extractDir], {
|
|
315
300
|
stdio: "ignore"
|
|
316
301
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aether-colony",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"description": "Bootstrap installer for the Aether ant colony CLI",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/calcosmic/Aether#readme",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"node": ">=18"
|
|
32
32
|
},
|
|
33
33
|
"bin": {
|
|
34
|
-
"aether": "
|
|
34
|
+
"aether": "bin/aether.js"
|
|
35
35
|
},
|
|
36
36
|
"files": [
|
|
37
37
|
"bin",
|