Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/9v2/pyclaw --skill tmuxコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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.