From ainbox
Guides structured async communication through AInbox. Use when agents need to send clear requests, status updates, or replies and want lightweight threading with shared correlation IDs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ainbox:mailbox-communicationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when agents need structured async coordination.
Use this skill when agents need structured async coordination.
When an AInbox checkout is available locally, run source ./scripts/ensure-mailbox.sh on Linux/macOS or .\scripts\ensure-mailbox.ps1 in PowerShell before using mailbox.
--correlation-id for related updatesmailbox send --to worker --subject "Task assignment: parser cleanup" \
--body "Please harden frontmatter parsing and report back." \
--correlation-id parser-fix
mailbox sync
# Rust CLI from source
cargo run -- send --to worker --subject "Task assignment: parser cleanup" --body "Please harden frontmatter parsing and report back." --correlation-id parser-fix
# Python compatibility CLI from source
python -m ainbox.cli send --to worker --subject "Task assignment: parser cleanup" --body "Please harden frontmatter parsing and report back." --correlation-id parser-fix
# Rust native CLI from source
cargo install --path .
# Python compatibility CLI
pip install git+https://github.com/JerrettDavis/AInbox.git
npx claudepluginhub jerrettdavis/ainbox --plugin agent-pollGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.