@relayflows/runtime-darwin-arm64 2.0.9 → 2.0.11

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 CHANGED
@@ -1,20 +1,13 @@
1
1
  # @relayflows/runtime-darwin-arm64
2
2
 
3
- Prebuilt Relayflow v2 runtime for `darwin-arm64` (Apple Silicon):
3
+ Prebuilt `relayflowd` kernel daemon for `darwin-arm64`. Install `relayflows` to get
4
+ the `flows` command backed by `@relayflows/sdk`; this package exports only
5
+ `relayflowd`, so it cannot replace the SDK CLI during npm's bin linking.
4
6
 
5
- - `bin/relayflowd` — the kernel daemon (Rust, `cargo build --release -p relayflowd`, target `aarch64-apple-darwin`)
6
- - `bin/flows` — the standalone CLI (`bun build --target=bun-darwin-arm64`)
7
+ The daemon is built from the release commit and published with npm provenance.
8
+ The package declares `os`/`cpu` and is an optional dependency of `relayflows`.
9
+ Unsupported platforms need a locally built daemon via `RELAYFLOWD_BIN`.
7
10
 
8
- Built natively on a `macos-14` GitHub Actions runner from the same commit and
9
- tag as every other release package, and published with npm provenance.
10
-
11
- This package is platform-specific by design. It declares `os`/`cpu`, so npm
12
- refuses to install it anywhere else rather than yielding a binary that cannot
13
- run. `@relayflows/sdk`'s `relayflowd-path.ts` resolves it as an optional
14
- dependency of the `relayflows` CLI package — installing `relayflows` on an
15
- Apple Silicon Mac pulls this in automatically; every other platform's npm
16
- skips it.
17
-
18
- Intel Macs (`darwin-x64`) are not covered by this package and fall through to
19
- `relayflowd-path.ts`'s later resolution steps (a source checkout or `PATH`)
20
- until a `@relayflows/runtime-darwin-x64` package exists.
11
+ The tarball also retains the legacy `bin/flows` executable required by the
12
+ existing release gate. It is not registered as an npm command. Removing it
13
+ from the archive requires a separate change by the release-gate owner.
package/bin/flows CHANGED
Binary file
package/bin/relayflowd CHANGED
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@relayflows/runtime-darwin-arm64",
3
- "version": "2.0.9",
4
- "description": "Relayflow v2 runtime for darwin-arm64: the relayflowd kernel and the flows CLI, as prebuilt binaries",
3
+ "version": "2.0.11",
4
+ "description": "Relayflow kernel for darwin-arm64: the prebuilt relayflowd daemon",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -18,8 +18,7 @@
18
18
  "bin/"
19
19
  ],
20
20
  "bin": {
21
- "relayflowd": "./bin/relayflowd",
22
- "flows": "./bin/flows"
21
+ "relayflowd": "./bin/relayflowd"
23
22
  },
24
23
  "engines": {
25
24
  "node": ">=20"