docs

docs is a skill for Claude Code, Codex from lleontor705/agent-mailbox-mcp. It costs 0 tokens per session (703 once invoked), scanned A, original, MIT.

A guide for using Agent Mailbox MCP, a system for sending messages and delegating tasks between AI agents.

In plain words
What is it for?
Use it to send messages, request responses, delegate work, broadcast announcements, and manage shared resources.
Why use it?
It helps agents choose the right communication pattern when they need to share information, coordinate files, or wait for another agent's reply.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to send messages, request responses, delegate work, broadcast announcements, and…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lleontor705/agent-mailbox-mcp/docs
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add lleontor705/agent-mailbox-mcp --skill docs
Clone the repo
git clone --depth 1 https://github.com/lleontor705/agent-mailbox-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for docs

README.md
[![agentmods](https://agentmods.dev/badge/skills/lleontor705/agent-mailbox-mcp/docs.svg)](https://agentmods.dev/skills/lleontor705/agent-mailbox-mcp/docs)
Your own site
<a href="https://agentmods.dev/skills/lleontor705/agent-mailbox-mcp/docs"><img src="https://agentmods.dev/badge/skills/lleontor705/agent-mailbox-mcp/docs.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 703 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00703
Opus 5 $0.00000 $0.00351
Sonnet 5 $0.00000 $0.00141
Haiku 4.5 $0.00000 $0.00070

Measured 6d ago against content hash 97cd5a70cbf6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

docs scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

docs/SKILL.md · 88 lines

How it starts

The opening of the file, as written. The whole thing — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Agent Mailbox MCP — Skill Guide for AI Agents

This document is designed for AI agents (Claude, GPT, Gemini, etc.) to understand how and when to use the agent-mailbox-mcp tools.

When to Use This Skill

Use the mailbox when you need to:

  • Send information to another agent that isn't in your current conversation
  • Delegate a task to a specialized agent and wait for results
  • Coordinate work on shared resources (files, APIs, databases)
  • Broadcast announcements to all agents in the system
  • Track long-running work across multiple agents

Quick Decision Tree

Need to communicate with another agent?
├── Simple message → msg_send / msg_read_inbox / msg_acknowledge
├── Need a reply back → msg_request (waits for answer)
├── Tell everyone → msg_broadcast
├── Delegate complex work → a2a_submit_task / a2a_respond_task
├── Coordinate file access → resource_acquire / resource_release
└── Find other agents → msg_list_agents

Tool Patterns

Pattern 1: Fire and Forget

Send a message without waiting for a response.

msg_send(sender: "me", recipient: "logger", subject: "Event", body: "User completed onboarding")

Pattern 2: Request and Wait

Send a message and block until the reply arrives.

msg_request(sender: "me", recipient: "calculator", subject: "Compute", body: "What is 42 * 17?", timeout_seconds: 30)
→ { success: true, reply: { body: "714" } }

Pattern 3: Task Delegation (A2A)

For complex work that involves status tracking.

a2a_submit_task(from_agent: "me", to_agent: "researcher", message: "Find the latest pricing for AWS Lambda")
→ { task_id: "task-abc" }

# Later, check status
a2a_get_task(task_id: "task-abc")
→ { task: { status: "completed", artifacts: [...] } }

Pattern 4: Resource Lock

Before editing a shared file:

resource_acquire(resource_id: "shared/config.yaml", agent: "me", ttl_seconds: 60)
# ... do your work ...
resource_release(resource_id: "shared/config.yaml", agent: "me")

Read the full file on GitHub · 88 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 88 lines · 0 tokens per session scan A 97cd5a70cbf6

Subscribe to this mod's changes

docs is a skill published in the GitHub repository lleontor705/agent-mailbox-mcp (0 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 703 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

agent-teams

Coordinates Claude agent teams via filesystem protocol. Use when orchestrating parallel agents with task dependencies. Do not use for single-agent tasks.

athola/claude-night-market · 30 tokens

agentxflow-coordinator

Authoritative multi-agent engineering coordinator for parallel workflows with isolated Git worktrees, write scope locking, automated machine verification, and serialized FIFO merge queue.

harlixay7/AgentXFlow · 35 tokens

design-taste-frontend

Anti-slop frontend skill for landing pages, portfolios, and redesigns. The agent reads the brief, infers the right design direction, and ships interfaces that do not look templated. Real design systems when applicable, audit-first on redesigns, strict pre-flight check.

dmae97/omk · 61 tokens

clone-website

Reverse-engineer and clone one or more websites in one shot — extracts assets, CSS, and content section-by-section and proactively dispatches parallel builder agents in worktrees as it goes. Use this whenever the user wants to clone, replicate, rebuild, reverse-engineer, or copy any website. Also triggers on phrases…

dmae97/omk · 96 tokens

image-to-code

Elite website image-to-code skill for Codex. For visually important web tasks, it must first generate the design image(s) itself, deeply analyze them, then implement the website to match them as closely as possible. In Codex, it must prefer large, readable, section-specific images instead of tiny compressed boards…

dmae97/omk · 116 tokens

imagegen-frontend-mobile

Elite mobile app image-generation skill for creating premium, app-native screen concepts and flows. Designed for iOS, Android, and cross-platform mobile products. Prioritizes clean hierarchy, comfortably readable text, strong multi-screen consistency, controlled color palettes, non-generic creative direction, textured…

dmae97/omk · 126 tokens