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.
npx skills add 23blocks-OS/ai-maestro-plugins --skill agent-messaginggit clone --depth 1 https://github.com/23blocks-OS/ai-maestro-pluginsWrote 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.
[](https://agentmods.dev/skills/23blocks-os/ai-maestro-plugins/agent-messaging)<a href="https://agentmods.dev/skills/23blocks-os/ai-maestro-plugins/agent-messaging"><img src="https://agentmods.dev/badge/skills/23blocks-os/ai-maestro-plugins/agent-messaging.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00050 | $0.02524 |
| Opus 5 | $0.00025 | $0.01262 |
| Sonnet 5 | $0.00010 | $0.00505 |
| Haiku 4.5 | $0.00005 | $0.00252 |
Grade A, and why
agent-messaging scanned grade A with 1 finding 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 7d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
compatibility: Requires curl, jq, openssl, and base64 CLI tools. macOS and Linux supported. Scripts are POSIX-compatible bash. Copies of this mod
1 near-identical copy found in the catalogue:
- agent-messaging — 100% identical, 47 lines differ
How it starts
The opening of the file, as written. The whole thing — 331 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Messaging Protocol (AMP)
Send and receive messages with other AI agents using the Agent Messaging Protocol.
When to use this skill
Use this skill when the user or task requires:
- Sending messages to other AI agents (local or remote)
- Checking an inbox for incoming messages
- Replying to messages from other agents
- Registering with external messaging providers
- Downloading file attachments from messages
- Checking agent identity or messaging status
Agent Identification (--id)
Every command (except amp-init.sh) accepts --id <uuid> to specify which agent you're operating as. The UUID comes from the agent's config.json (agent.id field).
# Operate as a specific agent
amp-inbox.sh --id 6bbdaeb8-8a85-4d0b-8f8c-3c217486eae8
amp-send.sh --id <uuid> alice "Hello" "Hi there"
Resolution order (first match wins):
AMP_DIRenv var (AI Maestro sets this)--id <uuid>argumentCLAUDE_AGENT_IDenv varCLAUDE_AGENT_NAMEenv var / tmux session- Single agent auto-select (if only one agent exists)
If multiple agents exist and none of the above resolve, the CLI lists available agents with UUIDs.
Identity Check (Run First)
Before using any messaging commands, ALWAYS verify your identity:
amp-identity.sh
# Or with explicit agent:
amp-identity.sh --id <uuid>
If you see "Not initialized", run:
amp-init.sh --auto
This identity check is essential because:
- Your AMP identity persists across sessions
- After context reset, you need to rediscover who you are
- Each agent has its own isolated AMP directory with identity, keys, and messages
Identity file location: ${AMP_DIR}/IDENTITY.md (per-agent, auto-resolved)
Quick Start
# 1. Initialize (first time only)
amp-init.sh --auto
# 2. Send a message
amp-send.sh alice "Hello" "How are you?"
# 3. Check inbox
amp-inbox.sh
Installation
For Claude Code (plugin)
git clone https://github.com/agentmessaging/claude-plugin.git ~/.claude/plugins/agent-messaging
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.
- 7d ago First seen · 331 lines · 50 tokens per session scan A 3176634fafb0
agent-messaging is a skill published in the GitHub repository 23blocks-OS/ai-maestro-plugins (9 stars, last pushed 2d ago), licensed MIT. It adds 50 tokens to every session and 2,524 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
coding-investigation
Investigate unfamiliar code behavior, or answer an exact symbol's definition, callers, callees, references, impact, and cross-repository relationship questions. Use it to trace activation, ownership, data flow, configuration, registration, and runtime wiring with bounded source evidence without mutating code; do not…
skill-installer
Create, import, update, validate, or relocate portable Agent Skill bundles with SKILL.md, on-demand references, deterministic scripts, output assets, UI metadata, and EvoFlux mode settings. Use for explicit skill authoring or installation; do not use for invoking an existing skill, changing agent configuration, or…
Read, create and manipulate PDF files — extract text and tables, merge, split, rotate, reorder and delete pages, read and fill AcroForm fields, add or strip metadata, encrypt and decrypt, and generate new PDFs from HTML or from scratch. Also covers rasterising pages to images so a PDF can actually be looked at, and…
easd-implement
Implement bounded work for an active EASD run under its accepted specification and AC ownership. Use only when EASD has authorized implementation; do not use while the run is Intent, authoring, draft, or merely accepted.
easd-verify
Run the final EASD integration and evidence gate against accepted AC policies, then prepare a convergence recommendation. Use after implementation and any required independent review; not for task-local code review or ordinary tests outside EASD.
coding-debugging
Use this skill when a test, build, runtime path, integration, or concurrent workflow fails and the responsible condition is unknown. It is for reproducing symptoms, isolating a cause, fixing it when authorized, and proving the regression; do not use it for general code exploration, proactive review, or an…