@relayflows/runtime-darwin-arm64 2.0.1

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.
Files changed (2) hide show
  1. package/README.md +20 -0
  2. package/package.json +27 -0
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # @relayflows/runtime-darwin-arm64
2
+
3
+ Prebuilt Relayflow v2 runtime for `darwin-arm64` (Apple Silicon):
4
+
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
+
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.
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "@relayflows/runtime-darwin-arm64",
3
+ "version": "2.0.1",
4
+ "description": "Relayflow v2 runtime for darwin-arm64: the relayflowd kernel and the flows CLI, as prebuilt binaries",
5
+ "license": "Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/AgentWorkforce/flows.git",
9
+ "directory": "packages/runtime-darwin-arm64"
10
+ },
11
+ "os": [
12
+ "darwin"
13
+ ],
14
+ "cpu": [
15
+ "arm64"
16
+ ],
17
+ "files": [
18
+ "bin/"
19
+ ],
20
+ "bin": {
21
+ "relayflowd": "./bin/relayflowd",
22
+ "flows": "./bin/flows"
23
+ },
24
+ "engines": {
25
+ "node": ">=20"
26
+ }
27
+ }