tmux

Manage multiple terminal sessions with windows, panes, and background processes.

5|3|Updated Apr 12, 2025
One-click install
npx skills add https://github.com/iamhenry/ai-project-starter-kit --skill tmux-iamhenry
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: tmux
Source: https://github.com/iamhenry/ai-project-starter-kit/tree/main/.claude/skills/tmux
Command: npx skills add https://github.com/iamhenry/ai-project-starter-kit --skill tmux-iamhenry

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Manages multiple concurrent tasks in a single terminal session, enabling background processes without losing context.

Core Features & Use Cases

  • Create and manage multiple windows/panes
  • Detach/attach sessions and capture output
  • Chain commands across panes

Quick Start

Verify you are in a tmux session: echo $TMUX Create a new detached window: tmux new-window -n "server-log" -d Send command: tmux send-keys -t "server-log" "npm start" C-m