tmux-mastery
Installation
SKILL.md
tmux Mastery
Covers two domains: process management (running/monitoring processes) and ricing (visual customization and UX plugins).
Process Management
Interactive Shell Pattern
Always use send-keys - never inline commands in new-session. This ensures PATH, direnv, and shell init run correctly.
# WRONG
tmux new-session -d -s myapp -n main 'npm run dev'