@agent-relay/broker-linux-arm64 0.0.1-bootstrap.0
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 +12 -0
- package/bin/.gitkeep +0 -0
- package/package.json +17 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# @agent-relay/broker-linux-arm64
|
|
2
|
+
|
|
3
|
+
Prebuilt `agent-relay-broker` binary for **Linux ARM64**. The broker is
|
|
4
|
+
compiled with `musl` static linking so it works on both glibc and musl hosts.
|
|
5
|
+
|
|
6
|
+
This package is installed automatically as an optional dependency of
|
|
7
|
+
[`@agent-relay/sdk`](https://www.npmjs.com/package/@agent-relay/sdk). You do
|
|
8
|
+
not need to depend on it directly. The SDK resolves the correct platform
|
|
9
|
+
binary at runtime via `require.resolve`.
|
|
10
|
+
|
|
11
|
+
See the [agent-relay repository](https://github.com/AgentWorkforce/relay) for
|
|
12
|
+
source and build tooling.
|
package/bin/.gitkeep
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@agent-relay/broker-linux-arm64",
|
|
3
|
+
"version": "0.0.1-bootstrap.0",
|
|
4
|
+
"description": "agent-relay-broker binary for linux arm64. Installed automatically as an optional dependency of @agent-relay/sdk.",
|
|
5
|
+
"files": [
|
|
6
|
+
"bin"
|
|
7
|
+
],
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/AgentWorkforce/relay.git",
|
|
11
|
+
"directory": "packages/broker-linux-arm64"
|
|
12
|
+
},
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
}
|
|
17
|
+
}
|