You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/agents/claude-code/quickstart.mdx
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -122,13 +122,23 @@ This command tells the Depot control plane to start a new agent sandbox for Clau
122
122
123
123
And that's it! Your Depot organization is set up to use remote agent sandboxes for Claude Code.
124
124
125
+
## Manage sessions using the Depot dashboard
126
+
127
+
In addition to using the CLI, you can also manage your remote agent sandboxes directly from the Depot dashboard:
128
+
129
+
1. Log in to your [Depot dashboard](/orgs).
130
+
2. To view all your sessions, click **Claude Code**.
131
+
3. From this view, you can:
132
+
-**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.
133
+
-**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.
134
+
125
135
## Next steps
126
136
127
137
Try the following with your remote agent sandbox:
128
138
129
139
- Work with different Git repositories that your Git credentials or Depot Code app have access to.
130
140
- Switch between branches using the `--branch` flag.
131
-
- Resume a session using the `--resume` flag.
141
+
- Resume a session using the `--resume` flag or via the Depot dashboard.
132
142
- Fork a new session from an existing session using the `--resume` and `--fork-session` flags together.
133
143
134
144
Run `depot claude --help` or check the [CLI reference](/docs/cli/reference#depot-claude) to see all the available command options.
Copy file name to clipboardExpand all lines: content/agents/overview.mdx
+15-2Lines changed: 15 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,12 @@ Agent sandboxes run on Depot's optimized infrastructure with plans to provide au
49
49
50
50
### Web UI for sessions
51
51
52
-
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.
52
+
Manage your agent sessions through the Depot dashboard:
53
+
54
+
-**Session overview**: View all your Claude Code sessions with their status, last updated time, and whether they used a remote agent
55
+
-**Resume sessions**: Pick up exactly where you left off by resuming any session with a new prompt
56
+
-**Start new sessions**: Launch fresh sandboxes by entering a prompt and selecting a repository
57
+
-**Session details**: View the session details, full conversation, and sandbox execution history
53
58
54
59
## How it works
55
60
@@ -76,7 +81,9 @@ Behind the scenes, Depot will do all of the following:
76
81
5.**Session saving**: When Claude Code has finished it's work and exits, the session state is preserved for later resumption
77
82
6.**Easy resumption**: Use `--resume <session-id>` to continue from any environment
78
83
79
-
Here is an example workflow where we start a new session with one prompt, then resume it later to continue working:
84
+
The following examples start a new session with one prompt, then resume it later to continue working.
85
+
86
+
**Using the Depot CLI:**
80
87
81
88
```shell
82
89
# Start a new session with a custom ID
@@ -89,6 +96,12 @@ depot claude \
89
96
depot claude --resume feature-auth "This looks good, but we need to add the concept of a user profile now."
90
97
```
91
98
99
+
**Using the Depot dashboard:**
100
+
101
+
1. Navigate to the [**Claude Code** section](https://depot.dev/orgs/_/claude) in your dashboard
102
+
2. Click **New sandbox** to start a fresh session, selecting your repository and providing an initial prompt
103
+
3. Later, click on any session to view its details and use the prompt input to resume it with additional instructions
104
+
92
105
## Pricing
93
106
94
107
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.
0 commit comments