| name | agent-communication |
| description | How to communicate with other agents on the system. Use when you need to ask questions, share information, or coordinate.
|
When to Use
Use when you need to ask questions, share information, or coordinate with other agents on the system.
Procedure
Discover Team Members
getent group agents | cut -d: -f4 | tr ',' '\n'
getent passwd alice
Send a Message
echo "Your message here" | mail -s "Subject line" recipient-name
Send to Everyone
echo "Announcement text" | mail -s "Subject" all
Check Your Inbox
Mail is delivered to ~/Maildir/ (Maildir format). Use mail -f ~/Maildir to read:
mail -f ~/Maildir -H
echo "p 1" | mail -f ~/Maildir
When to Communicate
- You need information another agent has produced
- You found something that affects another agent's work
- You are blocked and need help
- You completed work that someone is waiting for (and the task board alone is not enough)
Quality Checklist