diff --git a/apps/web/src/components/app/docs-sections/agents.tsx b/apps/web/src/components/app/docs-sections/agents.tsx
index 30d63c41..c1fc4daa 100644
--- a/apps/web/src/components/app/docs-sections/agents.tsx
+++ b/apps/web/src/components/app/docs-sections/agents.tsx
@@ -37,17 +37,18 @@ export function AgentsContent() {
Create managed git worktree — checked by default
(and disabled when the working directory isn't a git repo). Creates
an isolated worktree so the agent works without touching your
- primary checkout. When checked, two nested controls appear: a{" "}
- Starting branch picker (defaults to{" "}
- main, remembered per directory) that sets which branch
- the worktree checks out, and a{" "}
+ primary checkout. Two nested controls sit under it, dimmed and
+ disabled until it's checked: a Starting branch{" "}
+ picker (defaults to main) that sets which branch the
+ worktree checks out, and a{" "}
Create a new branch in this worktree checkbox that
controls whether Dispatch forks a new working branch from the
starting branch (on, default — the authoring flow) or just checks
out the starting branch directly (off — review/investigation flows).
- When on, a New branch name input appears — leave it
- empty and Dispatch auto-generates a name, or type one to use a
- specific branch. See the Worktrees section for details.
+ The New branch name input below it follows the same
+ pattern, active only while that checkbox is on — leave it empty and
+ Dispatch auto-generates a name, or type one to use a specific
+ branch. See the Worktrees section for details.
+ The form reopens with the choices you last made in that working + directory: full access, Autonomous Review, the starting branch, and + the new-branch checkbox are remembered per directory, and the model + per directory and agent type. +
Click Create to start the agent immediately. For CLI
types, Create with context opens a second step where
@@ -128,10 +135,11 @@ export function AgentsContent() {
- Press the play button to resume a stopped agent. Press the pause
- button to stop it — a confirmation dialog appears first, and you can
- resume the session later. Click an agent card to attach your terminal
- to its session, or click again to detach without stopping.
+ Press the play button on a stopped agent's row to resume it. To stop a
+ running agent, expand its card and press the pause button in the
+ footer — a confirmation dialog appears first, and you can resume the
+ session later. Click an agent card to attach your terminal to its
+ session, or click again to detach without stopping.
Starting and stopping
origin/main). It is hidden entirely when the agent has no
changes, briefly highlights when the numbers tick, and dims to ~60%
- opacity when the agent has reported activity since the last compute (a
- hint that the cached value may be stale). Clicking the badge forces a
- fresh recompute; the tooltip shows the file count.
+ opacity once the agent has reported activity since the last compute
+ and that compute is over 30 seconds old (a hint that the cached value
+ may be stale). Clicking the badge forces a fresh recompute; the
+ tooltip shows the file count.
@@ -245,14 +254,16 @@ export function AgentsContent() {
the agent, so it survives detaching, stopping, and resuming.
- Agents work the board through three MCP tools:{" "}
+ Agents work the board through four MCP tools:{" "}
whiteboard_get returns the element list plus the path to
a PNG snapshot of the board the agent can open to actually see the
- drawing, whiteboard_update adds or replaces elements by
- id, and whiteboard_clear wipes the board. The snapshot is
- rendered by your browser shortly after edits settle, so a board that
- has never been opened in the UI has no image yet — the agent falls
- back to the element list.
+ drawing, whiteboard_howto hands the agent the Excalidraw
+ element format and layout conventions on demand,{" "}
+ whiteboard_update adds or replaces elements by id (and
+ removes them by id), and whiteboard_clear wipes the
+ board. The snapshot is rendered by your browser shortly after edits
+ settle, so a board that has never been opened in the UI has no image
+ yet — the agent falls back to the element list.
When the agent draws while you're on another tab, a violet dot appears @@ -307,10 +318,10 @@ export function AgentsContent() { after 60 seconds a prompt is delivered even if you're still typing.
- Things you send yourself — quick phrases, dropped or pasted files — - never wait; they're meant to land where your cursor is. They still - take their turn behind a prompt that is actively being typed in, so - the two can't interleave. + Things you send yourself — quick phrases, shortcut pins, dropped or + pasted files — never wait; they're meant to land where your cursor is. + They still take their turn behind a prompt that is actively being + typed in, so the two can't interleave.
@@ -372,7 +383,10 @@ export function AgentsContent() {To rename any agent yourself, expand its sidebar card and click the edit button to open the Session details dialog and - type a new name. + type a new name. The dialog also carries the agent's current status + and the same branch, worktree, and diff details the card shows — which + is how you reach them for a sub agent, whose row has no expandable + details of its own.
@@ -381,9 +395,11 @@ export function AgentsContent() {Click the archive button to remove an agent. If the agent has a worktree with unmerged commits or uncommitted changes, you'll be asked - whether to keep or remove the worktree. Archived agents are preserved - in the History section of the Activity page, where you can review - their events, media, pins, feedback, and messages. + whether to keep or remove the worktree. Removing it also deletes the + branch Dispatch created for the agent — see Worktrees{" "} + for exactly what that throws away. Archived agents are preserved in + the History section of the Activity page, where you can review their + events, media, pins, feedback, and messages.
diff --git a/apps/web/src/lib/tips/tips.ts b/apps/web/src/lib/tips/tips.ts index edd0c39b..e0ea8244 100644 --- a/apps/web/src/lib/tips/tips.ts +++ b/apps/web/src/lib/tips/tips.ts @@ -316,6 +316,14 @@ export const tips: Tip[] = [ since: "0.11.12", surfaces: ["ambient"], }, + { + id: "create-with-context", + title: "Start an Agent With Context", + body: "The create dialog's second button, Create with context, opens a step for startup instructions, attached files, and links — so the session begins with what it needs instead of you pasting it into the terminal afterwards.", + docsSection: "agents", + since: "0.18.1", + surfaces: ["ambient"], + }, { id: "status-correction", title: "Status Correction",