Skip to content

Commit a0cafac

Browse files
committed
documentation cleanup and docs.json addition
1 parent ab3ff01 commit a0cafac

6 files changed

Lines changed: 16 additions & 9 deletions

File tree

docs/docs.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@
5656
"deploy/local",
5757
"deploy/e2b",
5858
"deploy/daytona",
59-
"deploy/agentcomputer",
6059
"deploy/vercel",
6160
"deploy/cloudflare",
6261
"deploy/docker",
6362
"deploy/modal",
6463
"deploy/boxlite",
65-
"deploy/computesdk"
64+
"deploy/computesdk",
65+
"deploy/agentcomputer"
6666
]
6767
}
6868
]

docs/quickstart.mdx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,13 @@ icon: "rocket"
6868
server --no-token --host 0.0.0.0 --port 2468
6969
```
7070
</Tab>
71+
72+
<Tab title="Agent Computer">
73+
```bash
74+
export COMPUTER_API_KEY="ac_live_..."
75+
# Agent auth usually stays inside your managed-worker image or default machine source.
76+
```
77+
</Tab>
7178
</Tabs>
7279

7380
<AccordionGroup>
@@ -173,7 +180,7 @@ icon: "rocket"
173180

174181
<AccordionGroup>
175182
<Accordion title="Configuring token">
176-
Tokens are usually not required. Most sandbox providers (E2B, Daytona, etc.) already secure networking at the infrastructure layer.
183+
Tokens are usually not required. Most sandbox providers (E2B, Daytona, Agent Computer, etc.) already secure networking at the infrastructure layer.
177184

178185
If you expose the server publicly, use `--token "$SANDBOX_TOKEN"` to require authentication:
179186

@@ -298,7 +305,7 @@ icon: "rocket"
298305
Configure in-memory, Rivet Actor state, IndexedDB, SQLite, and Postgres persistence.
299306
</Card>
300307
<Card title="Deploy to a Sandbox" icon="box" href="/deploy/local">
301-
Deploy your agent to E2B, Daytona, Docker, Vercel, or Cloudflare.
308+
Deploy your agent to E2B, Daytona, Docker, Vercel, Cloudflare, or Agent Computer.
302309
</Card>
303310
<Card title="SDK Overview" icon="compass" href="/sdk-overview">
304311
Use the latest TypeScript SDK API.

docs/sdk-overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ await sdk.destroySandbox(); // provider-defined cleanup + disposes client
9898
| `sandbox-agent/docker` | Docker container |
9999
| `sandbox-agent/e2b` | E2B sandbox |
100100
| `sandbox-agent/daytona` | Daytona workspace |
101-
| `sandbox-agent/agentcomputer` | Agent Computer managed worker |
102101
| `sandbox-agent/vercel` | Vercel Sandbox |
103102
| `sandbox-agent/cloudflare` | Cloudflare Sandbox |
103+
| `sandbox-agent/agentcomputer` | Agent Computer managed worker |
104104

105105
Use `sdk.dispose()` to disconnect without changing sandbox state, `sdk.pauseSandbox()` for graceful suspension when supported, or `sdk.killSandbox()` for permanent deletion.
106106

frontend/packages/website/src/components/FAQ.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ const faqs = [
2121
},
2222
{
2323
question: "Can I run this locally or does it require a sandbox provider?",
24-
answer: "Both. Run locally for development, deploy to E2B, Daytona, or Vercel Sandboxes for production.",
24+
answer: "Both. Run locally for development, deploy to E2B, Daytona, Vercel, or Agent Computer Sandboxes for production.",
2525
},
2626
{
2727
question: "Does it support [platform]?",
2828
answer:
29-
"The server is a single Rust binary that runs anywhere with a curl install. If your platform can run Linux binaries (Docker, VMs, etc.), it works. See the deployment guides for E2B, Daytona, and Vercel Sandboxes.",
29+
"The server is a single Rust binary that runs anywhere with a curl install. If your platform can run Linux binaries (Docker, VMs, etc.), it works. See the deployment guides for E2B, Daytona, Vercel, and Agent Computer Sandboxes.",
3030
},
3131
{
3232
question: "Can I use this with my personal API keys?",

frontend/packages/website/src/components/FeatureGrid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export function FeatureGrid() {
8383
<h4 className="text-base font-normal text-white">Runs Inside Any Sandbox</h4>
8484
</div>
8585
<p className="text-zinc-500 text-sm leading-relaxed">
86-
Lightweight static binary. One curl command to install inside E2B, Daytona, Vercel Sandboxes, or Docker.
86+
Lightweight static binary. One curl command to install inside E2B, Daytona, Vercel Sandboxes, Docker, or Agent Computer.
8787
</p>
8888
</div>
8989

frontend/packages/website/src/components/Integrations.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use client";
22

3-
const integrations = ["Daytona", "E2B", "AI SDK", "Anthropic", "OpenAI", "Docker", "Fly.io", "AWS Nitro", "Postgres", "ClickHouse", "Rivet"];
3+
const integrations = ["Daytona", "E2B", "AI SDK", "Anthropic", "OpenAI", "Docker", "Fly.io", "AWS Nitro", "Postgres", "ClickHouse", "Rivet", "Agent Computer"];
44

55
export function Integrations() {
66
return (

0 commit comments

Comments
 (0)