用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/9v2/pyclaw --skill tmux命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | tmux |
| description | Manage tmux sessions, windows, and panes |
You can manage tmux sessions for the user. Use these patterns:
tmux new-session -d -s <name> # create detached session
tmux new-session -d -s <name> -c <dir> # create in specific directory
tmux new-window -t <session> # new window in session
tmux split-window -h -t <session> # horizontal split
tmux split-window -v -t <session> # vertical split
tmux send-keys -t <session> '<cmd>' Enter # send command to pane
tmux ls # list all sessions
tmux list-windows -t <session> # list windows
tmux list-panes -t <session> # list panes
tmux attach -t <session> # attach to session
tmux kill-session -t <session> # kill session
tmux kill-server # kill all sessions
tmux rename-session -t <old> <new> # rename session
tmux capture-pane -t <session> -p # print pane contents
tmux capture-pane -t <session> -p -S -100 # last 100 lines
When managing long-running processes, prefer creating a dedicated tmux session so the user can monitor and interact with it independently.