tmux オーケストレーション環境の確認。「tmuxセットアップ」「tmuxオーケストレーターをセットアップ」「オーケストレーション環境を初期化」などのリクエスト時に使用。
How this skill is triggered — by the user, by Claude, or both
Slash command
/tmux-orchestrator-plugin:tmux-orchestrator-setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
tmux オーケストレーション環境の準備状態を確認する。
tmux オーケストレーション環境の準備状態を確認する。
スクリプトとテンプレートはスキルの references/ に配置されており、オーケストレーターがスキル参照から直接読み込む。.orchestrator/ へのコピーは不要。
/tmux-setup コマンドが実行されたときtmux -V
tmux がインストールされていない場合はインストール方法を案内する。
オーケストレーターが tmux コマンドやシェルスクリプトをプロンプトなしで自動実行できるように、プラグインの hooks/ ディレクトリに PermissionRequest hook が組み込まれている。
プラグインが有効であれば hooks/hooks.json が自動的にロードされ、以下のコマンドが自動許可される:
| カテゴリ | 許可条件 | 例 |
|---|---|---|
| スクリプト実行 | tmux-orchestrator-plugin パス配下のホワイトリスト済みスクリプト(17個)のみ | bash "$SCRIPTS_DIR/init-session.sh" ... |
| tmux サブコマンド | ホワイトリスト済みサブコマンドのみ(split-window, send-keys, kill-session 等13種) | tmux split-window -t sess -v -d |
| マーカー削除 | rm -f .orchestrator/ で始まるコマンドのみ(-rf は不許可) | rm -f .orchestrator/sess-001/.status/agent.done |
| ディレクトリ作成 | mkdir -p で .orchestrator/ 配下のみ | mkdir -p .orchestrator/sess-001/.config |
Note: 以前のバージョンでは
.claude/settings.jsonのpermissions.allowに18個のパターンを手動設定する必要がありましたが、現在はプラグインの hook で自動的に処理されます。
以下のスキルが利用可能であることを確認:
tmux-orchestration — オーケストレーション本体tmux-team — チームオーケストレーションtmux-orchestrator-config — 設定カスタマイズ環境は準備完了です。スクリプトとテンプレートはスキルから直接参照されるため、追加のセットアップは不要です。
Bash パーミッションが .claude/settings.json に設定されました。
次のステップ:
/tmux-config — CLI割り当てやチーム設定をカスタマイズ
/tmux-orchestrate — オーケストレーションを開始
/tmux-team — チームオーケストレーションを開始
Note: 以前のバージョンではスクリプトを
.orchestrator/scripts/にコピーする必要がありましたが、現在はスキル参照から直接実行されるため不要です。
npx claudepluginhub dio0550/d-market-orchestrator --plugin tmux-orchestrator-pluginManages tmux sessions, windows, and panes for persistent remote workflows and shell scripting automation. Useful for long-running processes, SSH disconnects, and multi-pane terminal layouts.
Renders a prepared tmux layout for operator-side observability of session side-channels (STATE.md tail, CI watch, events.jsonl tail). Default 4-pane layout or debug layout. Read-only — coordinator chat stays in original terminal.