一键导入
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