Install Infrastructure
- How to orchestrate multiple terminal sessions with ntm
- The Agent Mail message-passing architecture
- Setting up the brenner CLI for session management
- Install ntm (Named Tmux Manager)
- Set up and start Agent Mail server
- Install and verify the brenner CLI
The Multi-Agent Stack
Running three AI agents in parallel requires coordination infrastructure. You'll set up:
- 1ntm — Named Tmux Manager for running agents in persistent terminal sessions
- 2Agent Mail — Message-passing server for agent coordination
- 3brenner CLI — Session management and artifact compilation
1Install ntm (Named Tmux Manager)
ntm lets you create named tmux sessions and panes. Each AI agent will run in its own pane, allowing you to monitor all three simultaneously.
Install via Cargo (Rust):
Don't have Rust? Install with: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Or download pre-built binary:
Verify installation:
2Set Up Agent Mail
Agent Mail is the coordination bus. Agents post messages to threads, read their inbox, and acknowledge receipt. This enables asynchronous collaboration.
In a new terminal, verify the server is running:
3Install the brenner CLI
The brenner CLI manages research sessions, compiles artifacts from agent deltas, and provides utilities for corpus search and excerpt building.
Verify installation:
What brenner doctor checks:
- ✓ Corpus file exists and is readable
- ✓ Dependencies are installed
- ✓ Configuration is valid
- ✓ Agent Mail is reachable (if configured)
✓Verify Everything
Run these commands to confirm all infrastructure is ready:
Infrastructure Ready? If all three tools are working, you're ready to configure your AI agent subscriptions in the next step.