Skip to content

Commit 3d3e5d7

Browse files
committed
docs: simplify sandbox workspace examples
Link agent pages directly to the mountless workspace explanation and use sbx run for direct-mounted troubleshooting examples.
1 parent 76741a2 commit 3d3e5d7

11 files changed

Lines changed: 26 additions & 28 deletions

File tree

content/manuals/ai/sandboxes/agents/claude-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ $ sbx run --name my-sandbox claude . -- "Add error handling to the login functio
2626
Everything after `--` is passed directly to Claude Code. You can also pipe in a
2727
prompt from a file with `-- "$(cat prompt.txt)"`.
2828

29-
To create the sandbox without mounting a host workspace, omit the path from
30-
[`sbx create`](../usage.md#choose-a-workspace), then attach by name.
29+
To create a [mountless sandbox](../usage.md#choose-a-workspace), use
30+
`sbx create` without a workspace path, then attach by name.
3131

3232
## Authentication
3333

content/manuals/ai/sandboxes/agents/codex.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ $ cd ~/my-project
2727
$ sbx run codex
2828
```
2929

30-
To create the sandbox without mounting a host workspace, omit the path from
31-
[`sbx create`](../usage.md#choose-a-workspace), then attach by name.
30+
To create a [mountless sandbox](../usage.md#choose-a-workspace), use
31+
`sbx create` without a workspace path, then attach by name.
3232

3333
## Authentication
3434

content/manuals/ai/sandboxes/agents/copilot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ $ cd ~/my-project
2727
$ sbx run copilot
2828
```
2929

30-
To create the sandbox without mounting a host workspace, omit the path from
31-
[`sbx create`](../usage.md#choose-a-workspace), then attach by name.
30+
To create a [mountless sandbox](../usage.md#choose-a-workspace), use
31+
`sbx create` without a workspace path, then attach by name.
3232

3333
## Authentication
3434

content/manuals/ai/sandboxes/agents/cursor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ $ cd ~/my-project
2727
$ sbx run cursor
2828
```
2929

30-
To create the sandbox without mounting a host workspace, omit the path from
31-
[`sbx create`](../usage.md#choose-a-workspace), then attach by name.
30+
To create a [mountless sandbox](../usage.md#choose-a-workspace), use
31+
`sbx create` without a workspace path, then attach by name.
3232

3333
## Authentication
3434

content/manuals/ai/sandboxes/agents/docker-agent.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ $ sbx run docker-agent ~/my-project
1818
```
1919

2020
`sbx run docker-agent` defaults the workspace to the current directory, so you
21-
can run it from inside your project. To create the sandbox without mounting a
22-
host workspace, omit the path from
23-
[`sbx create`](../usage.md#choose-a-workspace), then attach by name.
21+
can run it from inside your project.
22+
23+
To create a [mountless sandbox](../usage.md#choose-a-workspace), use
24+
`sbx create` without a workspace path, then attach by name.
2425

2526
## Authentication
2627

content/manuals/ai/sandboxes/agents/droid.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ $ cd ~/my-project
2626
$ sbx run droid
2727
```
2828

29-
To create the sandbox without mounting a host workspace, omit the path from
30-
[`sbx create`](../usage.md#choose-a-workspace), then attach by name.
29+
To create a [mountless sandbox](../usage.md#choose-a-workspace), use
30+
`sbx create` without a workspace path, then attach by name.
3131

3232
## Authentication
3333

content/manuals/ai/sandboxes/agents/gemini.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ $ cd ~/my-project
2727
$ sbx run gemini
2828
```
2929

30-
To create the sandbox without mounting a host workspace, omit the path from
31-
[`sbx create`](../usage.md#choose-a-workspace), then attach by name.
30+
To create a [mountless sandbox](../usage.md#choose-a-workspace), use
31+
`sbx create` without a workspace path, then attach by name.
3232

3333
## Authentication
3434

content/manuals/ai/sandboxes/agents/kiro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ $ cd ~/my-project
2727
$ sbx run kiro
2828
```
2929

30-
To create the sandbox without mounting a host workspace, omit the path from
31-
[`sbx create`](../usage.md#choose-a-workspace), then attach by name.
30+
To create a [mountless sandbox](../usage.md#choose-a-workspace), use
31+
`sbx create` without a workspace path, then attach by name.
3232

3333
On first run, Kiro prompts you to authenticate using device flow.
3434

content/manuals/ai/sandboxes/agents/opencode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ $ cd ~/my-project
2727
$ sbx run opencode
2828
```
2929

30-
To create the sandbox without mounting a host workspace, omit the path from
31-
[`sbx create`](../usage.md#choose-a-workspace), then attach by name.
30+
To create a [mountless sandbox](../usage.md#choose-a-workspace), use
31+
`sbx create` without a workspace path, then attach by name.
3232

3333
OpenCode launches a TUI (text user interface) where you can select your
3434
preferred LLM provider and interact with the agent.

content/manuals/ai/sandboxes/agents/shell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ command instead of an interactive shell, pass it after `--`:
2121
$ sbx run shell -- -c "echo 'Hello from sandbox'"
2222
```
2323

24-
To open a [mountless sandbox](../usage.md#choose-a-workspace), omit the
25-
workspace path from `sbx create`, then attach by name:
24+
To create a [mountless sandbox](../usage.md#choose-a-workspace), use
25+
`sbx create` without a workspace path, then attach by name:
2626

2727
```console
2828
$ sbx create --name scratch shell

0 commit comments

Comments
 (0)