← ClaudeAtlas

ntmlisted

Named Tmux Manager - Multi-agent orchestration for Claude Code, Codex, and Gemini in tiled tmux panes. Visual dashboards, command palette, context rotation, robot mode API, work assignment, safety system. Go CLI.
aiskillstore/marketplace · ★ 329 · AI & Automation · score 79
Install: claude install-skill aiskillstore/marketplace
# NTM — Named Tmux Manager A Go CLI that transforms tmux into a **multi-agent command center** for orchestrating Claude Code, Codex, and Gemini agents in parallel. Spawn, manage, and coordinate AI agents across tiled panes with stunning TUI, automated context rotation, and deep integrations with the Agent Flywheel ecosystem. ## Why This Exists Managing multiple AI coding agents is painful: - **Window chaos**: Each agent needs its own terminal - **Context switching**: Jumping between windows breaks flow - **No orchestration**: Same prompt to multiple agents requires manual copy-paste - **Session fragility**: Disconnecting from SSH loses all agent sessions - **No visibility**: Hard to see agent status at a glance NTM solves all of this with one session containing many agents, persistent across SSH disconnections. ## Quick Start ```bash # Install curl -fsSL https://raw.githubusercontent.com/Dicklesworthstone/ntm/main/install.sh | bash # Add shell integration echo 'eval "$(ntm init zsh)"' >> ~/.zshrc && source ~/.zshrc # Interactive tutorial ntm tutorial # Check dependencies ntm deps -v # Create multi-agent session ntm spawn myproject --cc=2 --cod=1 --gmi=1 # Send prompt to all Claude agents ntm send myproject --cc "Explore this codebase and summarize its architecture." # Open command palette (or press F6 after `ntm bind`) ntm palette myproject ``` ## Session Creation ### Spawn Agents ```bash ntm spawn myproject --cc=3 --cod=2 --gmi=1 # 3 Claude + 2 Codex + 1 Gem