@desplega.ai/agent-fs-fuse-linux-arm64 0.6.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 +7 -0
- package/bin/.gitkeep +0 -0
- package/bin/agent-fs-fuse +0 -0
- package/package.json +27 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# @desplega.ai/agent-fs-fuse-linux-arm64
|
|
2
|
+
|
|
3
|
+
Platform-specific FUSE helper binary for [@desplega.ai/agent-fs](https://www.npmjs.com/package/@desplega.ai/agent-fs). Do not install directly — it is automatically resolved via `optionalDependencies` when you install the main package on Linux aarch64.
|
|
4
|
+
|
|
5
|
+
The binary at `bin/agent-fs-fuse` is a stripped, statically linked musl build produced by the agent-fs release workflow. It speaks the IPC protocol of the agent-fs daemon over a Unix socket; it is not useful standalone.
|
|
6
|
+
|
|
7
|
+
For local development of the helper itself, build from source: `cd packages/fuse-helper && cargo build --release` in the [agent-fs repo](https://github.com/desplega-ai/agent-fs).
|
package/bin/.gitkeep
ADDED
|
File without changes
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@desplega.ai/agent-fs-fuse-linux-arm64",
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"description": "Linux aarch64 FUSE helper binary for @desplega.ai/agent-fs. Do not install directly.",
|
|
5
|
+
"os": [
|
|
6
|
+
"linux"
|
|
7
|
+
],
|
|
8
|
+
"cpu": [
|
|
9
|
+
"arm64"
|
|
10
|
+
],
|
|
11
|
+
"libc": [
|
|
12
|
+
"glibc",
|
|
13
|
+
"musl"
|
|
14
|
+
],
|
|
15
|
+
"files": [
|
|
16
|
+
"bin/",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/desplega-ai/agent-fs.git"
|
|
26
|
+
}
|
|
27
|
+
}
|