@desplega.ai/agent-fs 0.7.0 → 0.7.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 +3 -1
- package/dist/cli.js +92 -63
- package/dist/fuse-bin.manifest.json +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -69,7 +69,9 @@ agent-fs can expose your drives as a Linux FUSE filesystem so agents can use pla
|
|
|
69
69
|
|
|
70
70
|
```bash
|
|
71
71
|
# Linux only — the FUSE helper sub-package auto-installs via optionalDependencies.
|
|
72
|
-
|
|
72
|
+
# Use Bun's installer; stock Ubuntu/Debian Node (18.x) chokes on a dep's
|
|
73
|
+
# postinstall and aborts the global install.
|
|
74
|
+
bun install -g @desplega.ai/agent-fs
|
|
73
75
|
agent-fs daemon start
|
|
74
76
|
agent-fs mount /mnt/agent-fs
|
|
75
77
|
```
|