From maestro
Signal a ticket's mailbox. Use when the user says "signal X", "send message to ticket", "ping the GH-N agent", "leave a note for X", "broadcast to inbox", or asks to drop a line in a ticket's inbox channel. Appends to /tmp/claude-agent-inbox/<TICKET>.log — human-to-human alert across terminals, NOT an agent input pipe.
How this skill is triggered — by the user, by Claude, or both
Slash command
/maestro:signal <ticket-id> <message><ticket-id> <message>This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Send a line to the mailbox for a ticket. Listeners (`maestro-listen.js`) in other tmux panes will see it as a `\x07>>> <message>` line (terminal bell).
Send a line to the mailbox for a ticket. Listeners (maestro-listen.js) in other tmux panes will see it as a \x07>>> <message> line (terminal bell).
/signal <TICKET> <message>
The agent running /work <TICKET> does not read the mailbox. It's a human-facing alert across terminals. To talk to a running agent, use:
tmux send-keys -t <TICKET>-work "your message" Enter
(or tmux load-buffer + paste-buffer + C-m for multi-line).
node plugins/maestro/scripts/maestro-signal.js <TICKET> "<message>"
npx claudepluginhub thomfilg/ai-plugin-work --plugin maestroGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.