Agent Mail Coordination Adapter
A messaging and file-reservation adapter skill for multiple AI writers working in the same repository.
AutomationAdvanced★ 426⑂ 40AI score 7/10Last updated: Aug 18, 2026
What it does
- Uses Agent Mail (MCP tools or the
amCLI) to register agent identities, send/read/acknowledge thread messages, and take temporary file reservations. - Treats reservations as strictly advisory and forces every participant to pin the same absolute project path and a single storage-root access mode.
- Reports conflicts, ownership locks, timeouts, and pending acknowledgements verbatim instead of narrowing, renewing, or force-releasing them.
- Isolates admin / disaster-recovery operations (pre-commit guard install,
doctor repair, backup/restore,clear-and-reset-everything) behind explicit caller authorization.
Who it's for
- Teams running multi-agent pipelines where several sessions edit one repository.
- AgentOps-style workflows that need a standardized coordination step.
- Anyone who wants to eliminate "silence-as-status" reasoning between agents.
Examples
- "Coordinate writers" — register both agents' identities and reserve each one's paths with a bounded TTL.
- "Reserve src/api" — reserve only the requested paths; on overlap, report the conflicting reservation as-is instead of shrinking scope.
- Pre-transition gate — verify every acknowledgement-required message was acked by its intended recipient, and halt the transition if any is pending.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/boshu2/agentops/HEAD/images/gemini/skills/agent-mail/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the images/gemini/skills/agent-mail folder from the GitHub repo boshu2/agentops into my ~/.claude/skills/agent-mail/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/boshu2/agentops.git /tmp/agentops && mkdir -p ~/.claude/skills && cp -r /tmp/agentops/images/gemini/skills/agent-mail ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/boshu2/agentops.git /tmp/agentops - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r /tmp/agentops/images/gemini/skills/agent-mail ~/.claude/skills/ - Confirm the
references/docs (TOOLS.md, WORKFLOWS.md, RECOVERY.md) came along. - Provide an Agent Mail runtime: register the MCP server in your Claude Code MCP config, or verify the CLI with
am --help. - Restart Claude Code and test with a request like "coordinate writers" or "reserve files". Note that the skill is
user-invocable: false, so it is normally triggered by a parent workflow.
View source on GitHub ↗License: Apache-2.0