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'

# CORRECT
tmux new-session -d -s myapp -n main
tmux send-keys -t myapp:main 'npm run dev' Enter
Related skills

More from kaynetik/skills

Installs
6
Repository
kaynetik/skills
First Seen
Mar 24, 2026