Custom Agents
Pane is agent-agnostic. Open a terminal, run your agent.
Any CLI agent — Aider, Goose, Amp, Devin CLI, your own script — runs inside a Pane worktree the same way it runs in a plain terminal. The agent gets an isolated branch, the diff view tracks its changes, and you commit and push with the same shortcuts.
Custom Shortcuts
Assign keyboard shortcuts to the commands you run most often.
- Open Settings → Shortcuts with ⌘+⌥+/ (macOS) or Ctrl+⌥+/ (Windows/Linux)
- Click Add Shortcut
- Fill in a key, a label, and the command to run
- Press ⌘+⌥+<key> in any pane’s terminal to paste that command instantly
Custom shortcuts paste the command text into the active terminal — they don’t execute it automatically. Press Enter to run.
Example shortcuts
| Label | Key | Command |
|---|---|---|
| Launch Aider | 1 | aider --model gpt-4o |
| Launch Amp | 2 | amp |
| Reset & retry | R | git checkout -- . && your-agent |
If you want Pane to have first-class support for your agent (dedicated panel, token tracking, session resume), contributions are welcome.See ADDING_NEW_CLI_TOOLS.md in the Pane repository for the integration spec.
Last updated on