Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion content/agents/claude-code/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,23 @@ This command tells the Depot control plane to start a new agent sandbox for Clau

And that's it! Your Depot organization is set up to use remote agent sandboxes for Claude Code.

## Manage sessions using the Depot dashboard

In addition to using the CLI, you can also manage your remote agent sandboxes directly from the Depot dashboard:

1. Log in to your [Depot dashboard](/orgs).
2. To view all your sessions, click **Claude Code**.
3. From this view, you can:
- **Resume existing sessions**: Click on any session to view its details, then use the prompt input at the bottom to resume the session with a new message.
- **Start new sessions**: Click the **New sandbox** button to launch a fresh Claude Code session in a new remote agent sandbox. You can select a repository, branch, and provide an initial prompt.

## Next steps

Try the following with your remote agent sandbox:

- Work with different Git repositories that your Git credentials or Depot Code app have access to.
- Switch between branches using the `--branch` flag.
- Resume a session using the `--resume` flag.
- Resume a session using the `--resume` flag or via the Depot dashboard.
- Fork a new session from an existing session using the `--resume` and `--fork-session` flags together.

Run `depot claude --help` or check the [CLI reference](/docs/cli/reference#depot-claude) to see all the available command options.
17 changes: 15 additions & 2 deletions content/agents/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ Agent sandboxes run on Depot's optimized infrastructure with plans to provide au

### Web UI for sessions

Easily manage your agent sessions through the Depot web UI. Start, resume, and share sessions with just a few clicks. The web interface provides a simple way to monitor your active sessions and access session logs.
Manage your agent sessions through the Depot dashboard:

- **Session overview**: View all your Claude Code sessions with their status, last updated time, and whether they used a remote agent
- **Resume sessions**: Pick up exactly where you left off by resuming any session with a new prompt
- **Start new sessions**: Launch fresh sandboxes by entering a prompt and selecting a repository
- **Session details**: View the session details, full conversation, and sandbox execution history

## How it works

Expand All @@ -76,7 +81,9 @@ Behind the scenes, Depot will do all of the following:
5. **Session saving**: When Claude Code has finished it's work and exits, the session state is preserved for later resumption
6. **Easy resumption**: Use `--resume <session-id>` to continue from any environment

Here is an example workflow where we start a new session with one prompt, then resume it later to continue working:
The following examples start a new session with one prompt, then resume it later to continue working.

**Using the Depot CLI:**

```shell
# Start a new session with a custom ID
Expand All @@ -89,6 +96,12 @@ depot claude \
depot claude --resume feature-auth "This looks good, but we need to add the concept of a user profile now."
```

**Using the Depot dashboard:**

1. Navigate to the [**Claude Code** section](https://depot.dev/orgs/_/claude) in your dashboard
2. Click **New sandbox** to start a fresh session, selecting your repository and providing an initial prompt
3. Later, click on any session to view its details and use the prompt input to resume it with additional instructions

## Pricing

Depot remote agent sandboxes are available on **all plans** and are billed at a usage rate of **$0.01/minute** with no included usage for remote agents.
Expand Down
Loading