Useful Tmux Commands banner
Dicklesworthstone Dicklesworthstone

Useful Tmux Commands

AI community

Description

Tmux session management toolkit for spawning and coordinating multiple AI coding agents across tiled panes

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

🖥️ Useful Tmux Commands

![Platform](https://img.shields.io/badge/platform-Linux%20%7C%20macOS-blue.svg) ![Shell](https://img.shields.io/badge/shell-zsh-green.svg) ![License](https://img.shields.io/badge/License-MIT%2BOpenAI%2FAnthropic%20Rider-blue.svg) ![Status](https://img.shields.io/badge/status-stable-brightgreen.svg)

**A powerful tmux session management toolkit for orchestrating multiple AI coding agents in parallel.**

Spawn, manage, and coordinate Claude Code, OpenAI Codex, and Google Gemini CLI agents across tiled tmux panes with simple commands.

curl -fsSL "https://raw.githubusercontent.com/Dicklesworthstone/useful_tmux_commands/main/add_useful_tmux_commands_to_zshrc.sh?$(date +%s)" | bash

🚀 Easy Mode (Recommended for New Users)

Install everything automatically—tmux, fzf, configs, and keybindings—with a single command:

curl -fsSL "https://raw.githubusercontent.com/Dicklesworthstone/useful_tmux_commands/main/add_useful_tmux_commands_to_zshrc.sh?$(date +%s)" | bash -s -- --easy

Easy mode automatically:

  • ✅ Installs tmux and fzf (via Homebrew/apt/dnf/pacman)
  • ✅ Adds recommended tmux.conf settings (mouse support, colors, status bar)
  • ✅ Sets up F6 keybinding for the command palette
  • ✅ Fetches default command palette config from repo (~/.config/ntm/command_palette.md)

After installation, run `source ~/.zshrc` and press **F6** in any tmux session to open the command palette.

**Customizing defaults:** Fork the repo, edit `command_palette.md`, then install with:

curl -fsSL https://raw.githubusercontent.com/YOUR_USERNAME/useful_tmux_commands/main/add_useful_tmux_commands_to_zshrc.sh | \
  NTM_REPO_BASE="https://raw.githubusercontent.com/YOUR_USERNAME/useful_tmux_commands/main" bash -s -- --easy

💡 Why This Exists

The Problem

Modern AI-assisted development often involves running multiple coding agents simultaneously—Claude for architecture decisions, Codex for implem