Skip to main content
Checkpoints give you undo/redo for agent actions. Every time you send a prompt and the agent responds, a checkpoint is created. You can browse past checkpoints, undo to an earlier point, or branch from a previous checkpoint by sending a new message.

Browsing

Use Ctrl+B and Ctrl+F to step backward and forward through checkpoints.
ShortcutAction
Ctrl+BView previous checkpoint
Ctrl+FView next checkpoint (or back to live)
When viewing a past checkpoint, messages after that point are dimmed and a separator appears:
↶ Viewing checkpoint #2, send a message to rewind here.
Browsing is instant and read-only — no files are changed, no git operations run. Press Ctrl+F past the last checkpoint to return to live view.

Branching

Send a message while viewing a past checkpoint to branch from it. The conversation is truncated to that checkpoint’s messages, and your new message continues from there. Later messages are discarded from the model context but remain visible (dimmed) in the chat. This is the primary workflow for recovering from a wrong direction — go back to where things were good and try a different approach.

Undo and redo

/checkpoint undo reverts the last checkpoint — both the conversation state and the files on disk.
CommandDescription
/checkpointList all checkpoints
/checkpoint NView checkpoint N
/checkpoint liveBack to live view
/checkpoint undoUndo last checkpoint
/checkpoint undo NUndo to checkpoint N
/checkpoint redoRedo last undone checkpoint
/checkpoint saveForce save current state as git tag
Undone checkpoints stay visible in the chat (dimmed) with a separator:
↶ Rewound past this point.
Sending a new message after an undo clears the redo stack, like any standard undo/redo system.

Checkpoint rail

A vertical rail on the right edge of the chat shows checkpoint dots:
DotMeaning
ColoredCompleted checkpoint with file edits
MutedCompleted checkpoint (read-only)
SpinnerCurrently running
HollowUndone checkpoint
OrangeCurrently viewed
When there are more checkpoints than the rail can display, +N indicators show how many are hidden above and below. The visible window follows your navigation.

Git integration

Checkpoints that include file edits are automatically git-tagged when the agent finishes. File restore uses per-file recovery (git show) — only files edited in the undone checkpoints are reverted. Other tabs’ files are never touched.
No git repo? Checkpoints still work for browsing and conversation undo. File restore is silently skipped — the agent will re-apply changes based on the rewound conversation.

Sessions

Checkpoint git tags are saved with sessions and restored when a session is loaded. Deleting a session cleans up its associated git tags.

Tabs

Each tab has its own independent checkpoint history. Git tags are namespaced by tab ID so they never collide. Undoing in one tab has no effect on other tabs.

Steering

Steering messages (sent while the agent is working via Ctrl+V or the message queue) do not create new checkpoints. They fold into the current running checkpoint.