The Workflow
Step 1 — Open the Diff tab
Press ⌘+A or ⌘+D to cycle through pane tabs. The Diff tab shows every file the agent touched.
Step 2 — Review changes
The diff view splits modified files into before/after columns. It auto-refreshes as the agent writes more files — no manual reload.
Toggle between split and unified view with the button in the top-right of the Diff tab.
Step 3 — Commit
Press ⌘+⇧+K to stage all changes and open the commit message dialog. Type your message and confirm.
Pane stages everything in the worktree. There is no partial staging UI — cherry-pick files in a terminal with git add -p if you need fine-grained control.
Step 4 — Push
Press ⌘+⇧+P to push the branch to your remote. From there, open a pull request in GitHub, GitLab, or wherever your repo lives.
Keyboard Reference
| Action | macOS | Windows / Linux |
|---|---|---|
| Cycle tabs | ⌘+A / ⌘+D | Ctrl+A / Ctrl+D |
| Commit | ⌘+⇧+K | Ctrl+⇧+K |
| Push | ⌘+⇧+P | Ctrl+⇧+P |
| Undo commit | ⌘+⇧+Z | Ctrl+⇧+Z |
Last updated on