From ainbox
Covers the basic AInbox inbox triage loop. Use when an agent needs to pull new messages, read the next relevant item, and reply or archive without loading the broader messaging guidance.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ainbox:mailbox-inbox-processingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to triage and process incoming AInbox messages.
Use this skill to triage and process incoming AInbox messages.
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.
mailbox sync --pull-only
mailbox list
mailbox read --id <message-id>
mailbox read --correlation-id <thread-id> to stay inside a threadmailbox send --to worker-agent --subject "RE: parser cleanup" \
--body "Reviewed. Looks good to merge." \
--correlation-id parser-fix
mailbox sync --push-only
# Rust CLI from source
cargo run -- read --id <message-id>
# Python compatibility CLI from source
python -m ainbox.cli read --id <message-id>
# Rust native CLI from source
cargo install --path .
# Python compatibility CLI
pip install git+https://github.com/JerrettDavis/AInbox.git
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub jerrettdavis/ainbox --plugin agent-poll