원클릭으로
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