← スキル一覧に戻る

tmux
by idjoo
⭐ 1🍴 0📅 2026年1月24日
SKILL.md
name: tmux description: Manage tmux sessions, windows, and panes for terminal multiplexing. Use when running long processes, managing multiple terminals, or executing commands in background sessions. allowed-tools: Bash(tmux:*) user-invocable: false
<subsection name="Create or Attach">
<command description="Create new session">tmux new-session -d -s "session-name"</command>
<command description="Attach to existing">tmux attach-session -t "session-name"</command>
<command description="Create if not exists, attach if exists">tmux new-session -A -s "session-name"</command>
</subsection>
<subsection name="Capture Output">
<command description="Capture pane contents">tmux capture-pane -t "session-name" -p</command>
<command description="Capture with history (last 1000 lines)">tmux capture-pane -t "session-name" -p -S -1000</command>
</subsection>
<pattern name="Check Process Status">
<description>Capture output to see if process completed</description>
<command>tmux capture-pane -t "build" -p | tail -20</command>
</pattern>
<pattern name="Cleanup">
<command description="Kill specific session">tmux kill-session -t "session-name"</command>
<command description="Kill all sessions">tmux kill-server</command>
</pattern>
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です