Guide contents

Reviewing Agent Changes

The Review view (Mod+5) is Strand's core workflow: a dedicated surface for reading everything an AI coding agent did to your repository — whether it left the changes unstaged, staged them, or already committed them — and turning your reading into verdicts and feedback. It is deliberately separate from Local Changes: staging lives there, reviewing lives here.

Open it from the sidebar Review row, with Mod+5, or via the palette action "Show: Review".

Two modes#

Review works in one of two modes, decided by whether a baseline is pinned:

If the view is empty, the placeholder tells you which mode you are in — in session mode it reads "No changes since <short>. Let the agent work — this view follows along live."

Whole-file context diffs#

Every file in the review set renders in its entirety, with the edits inline — not as isolated hunks with a few context lines. You always see the code around a change, which is exactly what reviewing agent output needs: agents edit in many places at once, and hunk-sized windows hide the shape of the file. Large files stay fast; the diff pane is virtualized, so a 5,000-line file mounts only the rows on screen.

Mod+F opens in-diff search across the whole review set, with wrap-around stepping (Enter / Shift+Enter) and path + line previews; jumps land centered on the matched line.

Pinning a baseline#

A baseline says "review everything since this commit." Pin one before you hand a task to an agent, and the session captures the agent's commits, staged work, and unstaged work in one combined diff.

The baseline persists per repository, so a session survives restarting Strand. While a baseline is pinned, the graph toolbar also offers "Select since <short>" (palette: "Review: select commits since baseline"), which multi-selects the agent session's commits in the graph. Commits with Co-Authored-By trailers or bot authors get an ai chip there, so agent sessions are easy to spot.

The review queue#

The left side of the view is a file tree of everything in the review set — your queue. It tracks your progress:

Double-click or press Enter on a row to toggle its reviewed state; doing this on a folder marks its whole subtree. Right-click a row for Mark reviewed, Stage, Discard, and Copy path. Reviewed marks persist per repository across restarts, and they drive the progress bar in the Review toolbar.

Change map#

Beside the diff's scrollbar sits an overview ruler marking where every change block lives in the file — green for additions, red for deletions, split for mixed blocks — plus a translucent thumb tracking the visible region. Click or drag it to jump anywhere in the file. It is the fastest way to see how much of a long file the agent actually touched.

Notes and feedback for the agent#

While reading, attach notes to what you want changed:

When you are done, click Copy feedback (N) in the toolbar (palette: "Review: copy feedback as prompt"). Strand assembles every note into one Markdown prompt — branch and baseline header, per-file sections, each line note with a fenced diff excerpt of the surrounding lines, and a closing instruction — ready to paste straight back into the agent. "Review: clear notes" wipes the slate for the next round.

Live following#

Strand watches the working tree, so the review set updates while the agent is still working — no need to focus the window or hit refresh. New edits appear in the queue, and files edited after you reviewed them flip back to changed on their own. You can review an agent session as it happens rather than after the fact.

Keyboard loop#

Review is built to be driven entirely from the keyboard. These keys are fixed (the navigation ones also appear under Settings → Keyboard → Context shortcuts):

Key Action
j / k Next / previous file in the queue
n / p Next / previous change block in the diff
Space Toggle reviewed on the current file (stays on the file)
m Add a note to the current file
s Stage the current file (when it is unstaged)
d d Discard the current file (press twice to confirm)
c Jump to Local Changes and focus the commit subject field
Shift+J / Shift+K Scroll the diff pane down / up
Mod+F Search within the review diff
/ Move through the file tree

The typical rhythm: j, read, Space, j, read, m to leave a note, Space — and c to go commit once the queue is clear.

Acting on your verdicts#

Once files are marked, the toolbar offers bulk actions:

Single-file discards (d d, or the context-menu Discard) also require the second press to confirm. In inbox mode, discarding an individual change block via its inline button surfaces an Undo toast for a few seconds — clicking Undo applies the discarded slice back to the working tree.

Discards permanently modify the working tree, so for anything larger than a block, prefer taking a snapshot first: the palette's "Save snapshot…" records the current state onto the stash stack while keeping your working tree untouched. See Everyday Git for stashes and snapshots.

Review vs base for worktrees#

Worktrees are the natural container for agent tasks — one attempt per worktree. Review vs base (the Review button on a worktree row in the Worktrees dashboard, or the "Review vs base" item in a worktree's sidebar / rail / tab context menu) pins the review baseline at the point where the worktree's branch forked from its detected base branch — the branch it was actually cut from, which is not necessarily the main branch — and opens that worktree's tab directly on Review in session mode (if the base branch cannot be detected, the tab opens on Local Changes instead). You see the attempt's committed, staged, and unstaged work since the fork point as one diff, with the full queue, notes, and feedback export.

See Worktrees for creating worktrees, comparing multiple attempts, and merging the winner.

Reviewing across repositories#

If your product spans several repositories grouped into a workspace, Workspace Review (Mod+7) aggregates every member repository — and every open worktree tab of a member — into one merged review queue with the same keys, notes, and feedback export. See Repositories and workspaces.