Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Agent Mail Coordination Adapter

A messaging and file-reservation adapter skill for multiple AI writers working in the same repository.

AutomationAdvanced42640AI score 7/10Last updated: Aug 18, 2026

What it does

  • Uses Agent Mail (MCP tools or the am CLI) 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

  1. "Coordinate writers" — register both agents' identities and reserve each one's paths with a bounded TTL.
  2. "Reserve src/api" — reserve only the requested paths; on overlap, report the conflicting reservation as-is instead of shrinking scope.
  3. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/boshu2/agentops.git /tmp/agentops
  3. Create the skills directory: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r /tmp/agentops/images/gemini/skills/agent-mail ~/.claude/skills/
  5. Confirm the references/ docs (TOOLS.md, WORKFLOWS.md, RECOVERY.md) came along.
  6. Provide an Agent Mail runtime: register the MCP server in your Claude Code MCP config, or verify the CLI with am --help.
  7. 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 GitHubLicense: Apache-2.0