Agent skill
tmux-sender
tmux の別ペインにコマンドを送信する。「ペインで実行して」「tmuxで送信」などのリクエストで使用。
Install this agent skill to your Project
npx add-skill https://github.com/uuta/dotfiles/tree/main/skills/tmux-sender
SKILL.md
tmux コマンド送信スキル
使い方
tmux のペインにコマンドを送信して実行する場合、コマンドが単一行か複数行かで方法を切り替える。
単一行コマンド
tmux send-keys -t <ペイン番号> '<コマンド>' C-m
複数行コマンド(改行を含む場合)
# 1. 一時ファイルに書き出す
printf '%s' "$command" > /tmp/tmux_send.txt
# 2. tmux バッファに読み込む
tmux load-buffer /tmp/tmux_send.txt
# 3. ペインにペーストする(改行を保ったまま送信)
tmux paste-buffer -t <ペイン番号>
sleep 0.5
# 4. 実行する
tmux send-keys -t <ペイン番号> C-m
手順
tmux list-panesでペイン一覧を確認- コマンドに改行が含まれるか判定する
- 単一行なら
tmux send-keys -t <ペイン番号> '<コマンド>' C-mで送信・実行 - 複数行なら
load-buffer→paste-buffer→C-mの順で送信・実行
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
pbi-sub-issue
タスク分割プラン(pbi-task-splitで作成)を元に、GitHub の Sub-issue を作成する。親 Issue との関係も自動で設定。
dev
Orchestrate TDD-based development workflow. Checks workflow state and delegates work to subagents (dev-plan, dev-step, create-pr).
neo-frontend-design
Create dark command-center / cyberpunk dashboard interfaces inspired by the OJPP Portal design. Use this skill when the user asks for a dark, neon-accented, terminal-aesthetic UI. Generates production-grade code with glitch effects, monospace typography, and per-module neon color coding.
tdd-plan
Create implementation plans following TDD methodology with test-first approach. Each test file is immediately followed by its implementation (fine-grained RED→GREEN cycles).
prototype
Generate 3 HTML prototype variants using a team of parallel agents. Each agent creates a distinct design pattern (e.g., hover effects, animations, layouts) based on user prompts or docs/goal.md. Use when the user wants to explore multiple design directions for a UI component.
review-format
Output in the specified format when a review of specific markdown is requested.
Didn't find tool you were looking for?