Agent skill

tmux

Expert tmux session, window, and pane management for terminal multiplexing, persistent remote workflows, and shell scripting automation.

Nick44,414★ · +328/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill tmux --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 11 KB
Bundled scripts: none
Declared author: kostakost2
Path: skills/tmux/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# tmux — Terminal Multiplexer ## Overview `tmux` keeps terminal sessions alive across SSH disconnects, splits work across multiple panes, and enables fully scriptable terminal automation. This skill covers session management, window/pane layout, keybinding patterns, and using `tmux` non-interactively from shell scripts — essential for remote servers, long-running jobs, and automated workflows. ## When to Use This Skill - Use when setting up or managing persistent terminal sessions on remote servers - Use when the user needs to run long-running processes that survive SSH disconnects - Use when scripting multi-pane terminal layouts (e.g., logs + shell + editor) - Use when automating `tmux` commands from bash scripts without user interaction ## How It Works `tmux` has three hierarchy levels: **sessions** (top level, survives disconnects), **windows** (tabs within a session), and **panes** (splits within a window). Everything is controllable from outside via `tmux <command>` or from inside via the prefix key (`Ctrl-b` by default). ### Session Management ```bash # Create a new named session tmux new-session -s work # Create detached (background) session tmux new-session -d -s work # Cre

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. How It Works
  4. Session Management
  5. Window Management
  6. Pane Management
  7. Sending Commands to Panes Without Being Attached
  8. Scripting a Full Workspace Layout
  9. Configuration (~/.tmux.conf)
  10. Copy Mode and Scrollback
  11. Practical Automation Patterns
  12. Remote and SSH Workflows
  13. Best Practices
  14. Security & Safety Notes
Commands it runs
Create a new named session
tmux new-session -s work
Create detached (background) session
tmux new-session -d -s work
Create detached session and start a command
tmux new-session -d -s build -x 220 -y 50 "make all"
Attach to a session
tmux attach -t work
tmux attach          # attaches to most recent session
List all sessions
More from agentic-awesome-skills
All skills →
About this skill
What does the tmux skill do?

Expert tmux session, window, and pane management for terminal multiplexing, persistent remote workflows, and shell scripting automation.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill tmux --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going