mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 08:03:46 +00:00
209 lines
6.5 KiB
Text
209 lines
6.5 KiB
Text
---
|
|
title: "File System"
|
|
description: "Read, write, and manage files inside the sandbox."
|
|
sidebarTitle: "File System"
|
|
icon: "folder"
|
|
---
|
|
|
|
The filesystem API lets you list, read, write, move, and delete files inside the sandbox, plus upload batches of files via tar archives.
|
|
Control operations (`list`, `mkdir`, `move`, `stat`, `delete`) are ACP extensions on `/v2/rpc` and require an active ACP connection in the SDK.
|
|
|
|
Binary transfer is intentionally a separate HTTP API (not ACP extension methods):
|
|
|
|
- `GET /v2/fs/file`
|
|
- `PUT /v2/fs/file`
|
|
- `POST /v2/fs/upload-batch`
|
|
|
|
Reason: these are host/runtime capabilities implemented by Sandbox Agent for cross-agent-consistent behavior, and they may require streaming very large binary payloads that ACP JSON-RPC is not suited to transport efficiently.
|
|
This is intentionally separate from ACP native `fs/read_text_file` and `fs/write_text_file`.
|
|
ACP extension variants may exist in parallel for compatibility, but SDK defaults should use the HTTP endpoints above for binary transfer.
|
|
|
|
## Path Resolution
|
|
|
|
- Absolute paths are used as-is.
|
|
- Relative paths use the session working directory when `sessionId` is provided.
|
|
- Without `sessionId`, relative paths resolve against the server home directory.
|
|
- Relative paths cannot contain `..` or absolute prefixes; requests that attempt to escape the root are rejected.
|
|
|
|
The session working directory is the server process current working directory at the moment the session is created.
|
|
|
|
## List Entries
|
|
|
|
`listFsEntries()` uses ACP extension method `_sandboxagent/fs/list_entries`.
|
|
|
|
<CodeGroup>
|
|
```ts TypeScript
|
|
import { SandboxAgentClient } from "sandbox-agent";
|
|
|
|
const client = new SandboxAgentClient({ baseUrl: "http://127.0.0.1:2468",
|
|
token: process.env.SANDBOX_TOKEN,
|
|
agent: "mock" });
|
|
|
|
const entries = await client.listFsEntries({
|
|
path: "./workspace",
|
|
sessionId: "my-session",
|
|
});
|
|
|
|
console.log(entries);
|
|
```
|
|
|
|
```bash cURL
|
|
curl -X POST "http://127.0.0.1:2468/v2/rpc" \
|
|
-H "Authorization: Bearer $SANDBOX_TOKEN" \
|
|
-H "x-acp-connection-id: acp_conn_1" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"jsonrpc":"2.0","id":1,"method":"_sandboxagent/fs/list_entries","params":{"path":"./workspace","sessionId":"my-session"}}'
|
|
```
|
|
</CodeGroup>
|
|
|
|
## Read And Write Files
|
|
|
|
`PUT /v2/fs/file` writes raw bytes. `GET /v2/fs/file` returns raw bytes.
|
|
|
|
<CodeGroup>
|
|
```ts TypeScript
|
|
import { SandboxAgentClient } from "sandbox-agent";
|
|
|
|
const client = new SandboxAgentClient({ baseUrl: "http://127.0.0.1:2468",
|
|
token: process.env.SANDBOX_TOKEN,
|
|
agent: "mock" });
|
|
|
|
await client.writeFsFile({ path: "./notes.txt", sessionId: "my-session" }, "hello");
|
|
|
|
const bytes = await client.readFsFile({
|
|
path: "./notes.txt",
|
|
sessionId: "my-session",
|
|
});
|
|
|
|
const text = new TextDecoder().decode(bytes);
|
|
console.log(text);
|
|
```
|
|
|
|
```bash cURL
|
|
curl -X PUT "http://127.0.0.1:2468/v2/fs/file?path=./notes.txt&sessionId=my-session" \
|
|
-H "Authorization: Bearer $SANDBOX_TOKEN" \
|
|
--data-binary "hello"
|
|
|
|
curl -X GET "http://127.0.0.1:2468/v2/fs/file?path=./notes.txt&sessionId=my-session" \
|
|
-H "Authorization: Bearer $SANDBOX_TOKEN" \
|
|
--output ./notes.txt
|
|
```
|
|
</CodeGroup>
|
|
|
|
## Create Directories
|
|
|
|
`mkdirFs()` uses ACP extension method `_sandboxagent/fs/mkdir`.
|
|
|
|
<CodeGroup>
|
|
```ts TypeScript
|
|
import { SandboxAgentClient } from "sandbox-agent";
|
|
|
|
const client = new SandboxAgentClient({ baseUrl: "http://127.0.0.1:2468",
|
|
token: process.env.SANDBOX_TOKEN,
|
|
agent: "mock" });
|
|
|
|
await client.mkdirFs({
|
|
path: "./data",
|
|
sessionId: "my-session",
|
|
});
|
|
```
|
|
|
|
```bash cURL
|
|
curl -X POST "http://127.0.0.1:2468/v2/rpc" \
|
|
-H "Authorization: Bearer $SANDBOX_TOKEN" \
|
|
-H "x-acp-connection-id: acp_conn_1" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"jsonrpc":"2.0","id":2,"method":"_sandboxagent/fs/mkdir","params":{"path":"./data","sessionId":"my-session"}}'
|
|
```
|
|
</CodeGroup>
|
|
|
|
## Move, Delete, And Stat
|
|
|
|
`moveFs()`, `statFs()`, and `deleteFsEntry()` use ACP extension methods (`_sandboxagent/fs/move`, `_sandboxagent/fs/stat`, `_sandboxagent/fs/delete_entry`).
|
|
|
|
<CodeGroup>
|
|
```ts TypeScript
|
|
import { SandboxAgentClient } from "sandbox-agent";
|
|
|
|
const client = new SandboxAgentClient({ baseUrl: "http://127.0.0.1:2468",
|
|
token: process.env.SANDBOX_TOKEN,
|
|
agent: "mock" });
|
|
|
|
await client.moveFs(
|
|
{ from: "./notes.txt", to: "./notes-old.txt", overwrite: true },
|
|
{ sessionId: "my-session" },
|
|
);
|
|
|
|
const stat = await client.statFs({
|
|
path: "./notes-old.txt",
|
|
sessionId: "my-session",
|
|
});
|
|
|
|
await client.deleteFsEntry({
|
|
path: "./notes-old.txt",
|
|
sessionId: "my-session",
|
|
});
|
|
|
|
console.log(stat);
|
|
```
|
|
|
|
```bash cURL
|
|
curl -X POST "http://127.0.0.1:2468/v2/rpc" \
|
|
-H "Authorization: Bearer $SANDBOX_TOKEN" \
|
|
-H "x-acp-connection-id: acp_conn_1" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"jsonrpc":"2.0","id":3,"method":"_sandboxagent/fs/move","params":{"from":"./notes.txt","to":"./notes-old.txt","overwrite":true,"sessionId":"my-session"}}'
|
|
|
|
curl -X POST "http://127.0.0.1:2468/v2/rpc" \
|
|
-H "Authorization: Bearer $SANDBOX_TOKEN" \
|
|
-H "x-acp-connection-id: acp_conn_1" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"jsonrpc":"2.0","id":4,"method":"_sandboxagent/fs/stat","params":{"path":"./notes-old.txt","sessionId":"my-session"}}'
|
|
|
|
curl -X POST "http://127.0.0.1:2468/v2/rpc" \
|
|
-H "Authorization: Bearer $SANDBOX_TOKEN" \
|
|
-H "x-acp-connection-id: acp_conn_1" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"jsonrpc":"2.0","id":5,"method":"_sandboxagent/fs/delete_entry","params":{"path":"./notes-old.txt","sessionId":"my-session"}}'
|
|
```
|
|
</CodeGroup>
|
|
|
|
## Batch Upload (Tar)
|
|
|
|
Batch upload accepts `application/x-tar` only and extracts into the destination directory. The response returns absolute paths for extracted files, capped at 1024 entries.
|
|
|
|
<CodeGroup>
|
|
```ts TypeScript
|
|
import { SandboxAgentClient } from "sandbox-agent";
|
|
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import tar from "tar";
|
|
|
|
const client = new SandboxAgentClient({ baseUrl: "http://127.0.0.1:2468",
|
|
token: process.env.SANDBOX_TOKEN,
|
|
agent: "mock" });
|
|
|
|
const archivePath = path.join(process.cwd(), "skills.tar");
|
|
await tar.c({
|
|
cwd: "./skills",
|
|
file: archivePath,
|
|
}, ["."]);
|
|
|
|
const tarBuffer = await fs.promises.readFile(archivePath);
|
|
const result = await client.uploadFsBatch(tarBuffer, {
|
|
path: "./skills",
|
|
sessionId: "my-session",
|
|
});
|
|
|
|
console.log(result);
|
|
```
|
|
|
|
```bash cURL
|
|
tar -cf skills.tar -C ./skills .
|
|
|
|
curl -X POST "http://127.0.0.1:2468/v2/fs/upload-batch?path=./skills&sessionId=my-session" \
|
|
-H "Authorization: Bearer $SANDBOX_TOKEN" \
|
|
-H "Content-Type: application/x-tar" \
|
|
--data-binary @skills.tar
|
|
```
|
|
</CodeGroup>
|