Tooltitude AI Agent Manager is an agent-oriented terminal multiplexer that turns VS Code into a control center for parallel AI coding work.
Start Codex, Claude Code, Pi Agent, or a regular terminal in isolated git worktrees, keep every session visible from one quick menu, and bring promising changes back into your main workspace without losing track of what each agent is doing.
Getting Started
Open the menu with Cmd+K T on macOS or Ctrl+K T on Linux.
Use Quick Work Tree entries when you want an isolated temporary checkout for the agent.
Features
- Manage agent terminals and git worktrees from one VS Code menu.
- Start Codex, Claude Code, Pi Agent, or a shell in named or temporary worktrees.
- Reopen, track, notify on, and kill terminal sessions.
- Preview diffs, apply changes, rebase, merge, and clean up worktrees.
- Configure setup commands and environment variables for new worktrees.
tt-ws.toml
Use tt-ws.toml to define setup commands and environment variables for new worktrees.
Place it at the workspace root.
setup_commands = [
"pnpm install",
"mkdir -p $TMPDIR"
]
[env]
TMPDIR = "$TT_AGENT_DIR/agent-data/tmp"
setup_commands run in each newly created worktree.
[env] defines variables used by setup commands and terminals started from that worktree.
TT_AGENT_DIR points to the workspace directory.
Values can reference other environment variables, such as $TT_AGENT_DIR, and can use ~ for the home directory.
Terminal persistence
NOTE: terminals aren't kept if you exit or terminate a window.
Data
You could read about data collection in our privacy policy: https://www.tooltitude.com/privacy
Support Resources
Other Links