tmux

Manage terminal sessions, windows, and panes with tmux.

6|1|Updated Feb 16, 2026
One-click install
npx skills add https://github.com/L3DigitalNet/Claude-Code-Plugins --skill tmux-l3digitalnet
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: tmux
Source: https://github.com/L3DigitalNet/Claude-Code-Plugins/tree/main/plugins/linux-sysadmin/skills/tmux
Command: npx skills add https://github.com/L3DigitalNet/Claude-Code-Plugins --skill tmux-l3digitalnet

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill helps you manage complex terminal workflows by providing robust session, window, and pane management for the tmux terminal multiplexer.

Core Features & Use Cases

  • Persistent Sessions: Keep your terminal applications running even after disconnecting from SSH.
  • Window & Pane Management: Organize your work into multiple windows and split them into panes for efficient multitasking.
  • Use Case: You're working on a remote server via SSH. Start a tmux session to run a long-running process, detach from the session, and log out. Later, reattach to the same session to check the process status.

Quick Start

Use the tmux skill to create a new detached session named 'work' and run the 'htop' command within it.

Frequently Asked Questions about tmux

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I keep terminal sessions running after disconnecting from SSH?

Persistent terminal sessions allow your command-line processes to keep running after an SSH disconnect. Use a multiplexer like tmux to create a session, detach before disconnecting, and reattach later to restore your exact workflow state.

How do I manage multiple terminal windows and panes from a single command line interface?

Managing multiple terminal windows and panes from a single command line is done using a multiplexer like tmux. It lets you organize work into multiple windows, split them into resizable panes, and switch between them efficiently without opening new terminal emulators.

Do I need tmux installed on the remote server to manage long-running processes?

Yes, tmux must be installed on the system where you want to manage long-running processes. The multiplexer runs directly on the host machine to handle session creation, attachment, detachment, and pane manipulation for your command-line workflows.

What is the best way to organize command-line workflows for remote server administration?

Organizing command-line workflows for remote server administration is best handled by a terminal multiplexer. It provides session management to keep applications running, alongside window and pane splitting for efficient multitasking during administrative tasks.

Can I start a detached terminal session and run a command inside it automatically?

Yes, you can start a detached terminal session and automatically run a command inside it. Using a multiplexer like tmux, create a new named detached session and pass the desired command, which executes immediately in the background.