@tokencanopy/rainier 0.0.3 → 0.0.4
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 -6
- package/cli.js +1 -1
- package/package.json +1 -1
- package/release.js +6 -6
package/README.md
CHANGED
|
@@ -10,19 +10,20 @@ install or provision a control plane or runner.
|
|
|
10
10
|
npx @tokencanopy/rainier@beta --help
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Or pin this release: `npx @tokencanopy/rainier@0.0.
|
|
13
|
+
Or pin this release: `npx @tokencanopy/rainier@0.0.4 --help`.
|
|
14
14
|
|
|
15
15
|
## Install for daily use
|
|
16
16
|
|
|
17
17
|
```sh
|
|
18
18
|
npm install -g @tokencanopy/rainier@beta
|
|
19
|
+
rainier version
|
|
19
20
|
rainier --help
|
|
20
21
|
```
|
|
21
22
|
|
|
22
23
|
Requires Node.js 22 or newer, `tar`, and macOS or Linux on Apple Silicon/ARM64
|
|
23
24
|
or Intel/AMD64. Windows is not supported by this release.
|
|
24
25
|
|
|
25
|
-
The first invocation downloads the matching native v0.0.
|
|
26
|
+
The first invocation downloads the matching native v0.0.4 binary from GitHub
|
|
26
27
|
over HTTPS and verifies pinned SHA-256 hashes for both the archive and binary.
|
|
27
28
|
There are no npm dependencies or installation scripts. Subsequent invocations
|
|
28
29
|
verify and reuse the cached binary; they do not download it again unless it is
|
|
@@ -33,7 +34,7 @@ otherwise `~/.cache/rainier`. It must be writable by your user. First use needs
|
|
|
33
34
|
network access to GitHub and its release-asset CDN. The downloader does not
|
|
34
35
|
configure an HTTP proxy; use a standalone download if your network requires one.
|
|
35
36
|
No Go compiler is needed. Without Node.js, use a
|
|
36
|
-
[standalone release binary](https://github.com/tokencanopy/rainier/releases/tag/v0.0.
|
|
37
|
+
[standalone release binary](https://github.com/tokencanopy/rainier/releases/tag/v0.0.4).
|
|
37
38
|
The macOS release is not Developer ID signed or notarized.
|
|
38
39
|
|
|
39
40
|
## Connect to Rainier
|
|
@@ -43,6 +44,7 @@ see the [deployment guide](https://github.com/tokencanopy/rainier/blob/main/docs
|
|
|
43
44
|
|
|
44
45
|
```sh
|
|
45
46
|
rainier login --from-gh --server https://rainier.example.test
|
|
47
|
+
rainier doctor
|
|
46
48
|
rainier ls
|
|
47
49
|
```
|
|
48
50
|
|
|
@@ -50,13 +52,19 @@ For hosted pilot access, use the cloud endpoint supplied with your invitation:
|
|
|
50
52
|
|
|
51
53
|
```sh
|
|
52
54
|
rainier login --cloud https://cloud.example.test
|
|
55
|
+
rainier doctor
|
|
53
56
|
```
|
|
54
57
|
|
|
58
|
+
Follow the [first-session guide](https://github.com/tokencanopy/rainier/blob/v0.0.4/docs/cli-quickstart.md)
|
|
59
|
+
to select an environment, sign in to Claude Code or Codex, and start a session.
|
|
60
|
+
`rainier doctor` checks basic readiness; it does not install agents or prove that
|
|
61
|
+
provider credentials work. Hosted agent-credential integration is still in development.
|
|
62
|
+
|
|
55
63
|
Publishing this CLI does not imply hosted signup is generally available.
|
|
56
|
-
Version 0.0.
|
|
64
|
+
Version 0.0.4 is beta: interfaces may change. npm's `beta` tag selects the beta
|
|
57
65
|
package; the package always downloads its own pinned binary, never a moving
|
|
58
66
|
GitHub release. To update, rerun the install command above with the desired tag
|
|
59
|
-
or version. There is no native CLI auto-updater
|
|
67
|
+
or version. Run `rainier version` to confirm `rainier v0.0.4`. There is no native CLI auto-updater.
|
|
60
68
|
|
|
61
69
|
## Maintainers
|
|
62
70
|
|
|
@@ -64,5 +72,5 @@ From the repository root, run `make verify` and `make npm-test`. Smoke-test an
|
|
|
64
72
|
`npm pack ./npm` tarball through both `npx --package <tarball> rainier --help`
|
|
65
73
|
and a global installation with a temporary prefix/cache. Publish the verified
|
|
66
74
|
tarball using `npm publish <tarball> --access public --tag beta`.
|
|
67
|
-
Never replace v0.0.
|
|
75
|
+
Never replace v0.0.4 assets or mutate their pinned hashes after publication;
|
|
68
76
|
new binaries require a new release and package version.
|
package/cli.js
CHANGED
|
@@ -6,6 +6,6 @@ try {
|
|
|
6
6
|
await runBinary(executable, process.argv.slice(2));
|
|
7
7
|
} catch (error) {
|
|
8
8
|
console.error(`rainier: ${error.message}`);
|
|
9
|
-
console.error('Check network access to GitHub and cache-directory permissions. Standalone binaries: https://github.com/tokencanopy/rainier/releases/tag/v0.0.
|
|
9
|
+
console.error('Check network access to GitHub and cache-directory permissions. Standalone binaries: https://github.com/tokencanopy/rainier/releases/tag/v0.0.4');
|
|
10
10
|
process.exitCode = 1;
|
|
11
11
|
}
|
package/package.json
CHANGED
package/release.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
// Immutable assets built from v0.0.
|
|
2
|
-
export const version = '0.0.
|
|
1
|
+
// Immutable CLI assets built from v0.0.4 (70a37360f66e4cd5311475277594d9ad224454fe).
|
|
2
|
+
export const version = '0.0.4';
|
|
3
3
|
export const assets = {
|
|
4
|
-
darwin_x64: ['amd64', '
|
|
5
|
-
darwin_arm64: ['arm64', '
|
|
6
|
-
linux_x64: ['amd64', '
|
|
7
|
-
linux_arm64: ['arm64', '
|
|
4
|
+
darwin_x64: ['amd64', '9b5f6b339229f7501a854ca064df0537392f4c43ac882b2dcdec5a364e7fd6e2', '0c282136557b4759fa996ec643628acad46d51a28de7fe43065b16def8ce7637'],
|
|
5
|
+
darwin_arm64: ['arm64', 'c8e8972d97645a27f539b276ca8530b96642b3454c03fe4b06014713db04217a', '6d7649667adf72ecd65c1900851610406b80d97eea85503d1d02a254c3e94b3f'],
|
|
6
|
+
linux_x64: ['amd64', '39f93acdc16ae9e9c123451e3c53d0e764ad967aec4a286f2b649a2e07cdbdbe', '538ebed1a99ac43571ef06abe0fcb18085be8f6ad568605b0f0e6318867e356e'],
|
|
7
|
+
linux_arm64: ['arm64', 'b1489d22d4f4ceab5540923dc62fdfd1c8423cb04c16849ef23bf8f82fe745ea', '65828c3c58e72874e67e44ca55064420414c5ec35cfc16372dcc68da0908faa9'],
|
|
8
8
|
};
|