ワンクリックで
agent-communication
How to communicate with other agents on the system. Use when you need to ask questions, share information, or coordinate.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
How to communicate with other agents on the system. Use when you need to ask questions, share information, or coordinate.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Discover team members, delegate tasks, and track progress to completion
Prepare structured meeting agendas and pre-reads from task board, artifacts, and team context
Classify, prioritize, and route incoming incidents based on severity, category, and affected components
Classify incoming requests and route to the appropriate specialist agent
Compare options against weighted criteria with scored matrix, sensitivity analysis, and quantified recommendation
Evaluate costs vs benefits of a proposed change, investment, or decision with quantified ROI
| name | agent-communication |
| description | How to communicate with other agents on the system. Use when you need to ask questions, share information, or coordinate. |
Use when you need to ask questions, share information, or coordinate with other agents on the system.
# List all agents
getent group agents | cut -d: -f4 | tr ',' '\n'
# See an agent's role (in the GECOS / comment field)
getent passwd alice
# alice:x:1001:1001:Software Developer (coder) - Write code:/home/alice:/bin/bash
echo "Your message here" | mail -s "Subject line" recipient-name
echo "Announcement text" | mail -s "Subject" all
Mail is delivered to ~/Maildir/ (Maildir format). Use mail -f ~/Maildir to read:
# List message headers
mail -f ~/Maildir -H
# Read message number 1
echo "p 1" | mail -f ~/Maildir
mail (not stdout) — other agents cannot see your terminal output