Master NTM (Named Tmux Manager) for orchestrating agents.
What Is NTM?
NTM is your command center for managing multiple coding agents.
It creates organized tmux sessions with dedicated panes for each agent.
cccodgmiThe NTM Tutorial
NTM has a built-in tutorial. Start it now:
ntm tutorial
This will walk you through the basics interactively.
Essential NTM Commands
Check Dependencies
ntm deps -v
Verifies all required tools are installed.
Create a Project Session
ntm spawn myproject --cc=2 --cod=1 --gmi=1
Creates a tmux session with multiple agent panes.
List Sessions
ntm list
See all running NTM sessions.
Attach to a Session
ntm attach myproject
Jump into an existing session to see agent output.
Send a Command to All Agents
ntm send myproject "Analyze this codebase and summarize what it does"
This sends the same prompt to ALL agents in the session!
Send to Specific Agent Type
ntm send myproject --cc "Focus on the API layer"ntm send myproject --cod "Focus on the frontend"
Target specific agent types with different tasks.
The Power of NTM
Imagine this workflow:
Quick Session Template
For a typical project:
ntm spawn myproject --cc=2 --cod=1 --gmi=1
Why this ratio?
Session Navigation
Once inside an NTM session:
Try It Now
1# Create a test session2$ ntm spawn test-session --cc=134# List sessions5$ ntm list67# Send a simple task8$ ntm send test-session "Say hello and confirm you're working"910# Attach to see the result11$ ntm attach test-session