ワンクリックで
agentoast-send
Send a message TO an AI coding agent running in another tmux pane via the `agentoast send-keys` CLI.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Send a message TO an AI coding agent running in another tmux pane via the `agentoast send-keys` CLI.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | agentoast-send |
| description | Send a message TO an AI coding agent running in another tmux pane via the `agentoast send-keys` CLI. |
| when_to_use | Trigger only when BOTH are true: - The prompt contains the agentoast notification text "Please take a look at tmux pane %NN.". - The user adds an explicit instruction to send / reply / delegate something to that agent on top of the pasted notification. |
| license | MIT |
| compatibility | Requires agentoast CLI and tmux |
| allowed-tools | Bash(agentoast:*) Read |
| metadata | {"author":"shuntaka9576","version":"0.51.0"} |
This skill messages an AI coding agent running in another tmux pane via the agentoast send-keys CLI. The transport is a tmux pane id (e.g. %72).
Trigger conditions in the frontmatter when_to_use already filter most non-delegation prompts out. The job of this body is a single thing: before you reach for the send command, prove there is actually an agent at the target pane. A wrong target is a more common mistake than a wrong message — once you confirm the target, the actual send/reply flow is straightforward and lives in references/operate.md. Don't read that file until Step 2 below passes.
%NN)Please take a look at tmux pane %72. Take the %72 from there.(reply: agentoast send-keys --pane %45 "<reply>") names the target directly.%NNThe right send CLI depends on what's in the pane: agentoast send-keys for AI agent panes, plain tmux send-keys for shells. Pick the right one:
agentoast detect-agent --pane %NN
agent (exit 0) → an AI coding agent is running in %NN. Proceed to Step 3.no-agent (exit ≠ 0) → Don't stall asking for clarification. Carry out the user's instruction with raw tmux send-keys (agentoast refuses no-agent panes).Open and follow references/operate.md. It covers the agentoast send-keys invocation, the reply pattern for incoming messages, and when the right move is to not send anything (handoffs, acknowledgments, status pings). Reading it before Step 2 passes is wasted context.