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 agentmods add skills/ragavrida/agentsmcp/antigravitynpx skills add RagavRida/agentsmcp --skill antigravitygit clone --depth 1 https://github.com/RagavRida/agentsmcpWrote 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/ragavrida/agentsmcp/antigravity)<a href="https://agentmods.dev/skills/ragavrida/agentsmcp/antigravity"><img src="https://agentmods.dev/badge/skills/ragavrida/agentsmcp/antigravity.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.00075 | $0.02326 |
| Opus 5 | $0.00037 | $0.01163 |
| Sonnet 5 | $0.00015 | $0.00465 |
| Haiku 4.5 | $0.00007 | $0.00233 |
Grade A, and why
agentmailbox 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.
How it starts
The opening of the file, as written. The whole thing — 267 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AgentMailbox — Context Sync for AI Agents
Every agent has a mailbox. No agent ever starts cold.
AgentMailbox is a context-sync protocol that gives you durable, persistent threads across sessions, tools, and restarts. When you receive a message, you get the full thread state — snapshot, structured summary, recent messages — so you can pick up exactly where the last agent (or the last session) left off.
When to Use This Skill
- Session start: Check your mailbox for context from previous sessions
- "What was I working on?": Receive and sync threads to restore context
- Multi-agent tasks: Send messages to other agents, coordinate via threads
- Before switching tools: Send a summary so the next tool picks up seamlessly
- After completing work: Record decisions, artifacts, and progress to the thread
- Cross-platform continuity: Context follows the user across Cursor, Claude Desktop, Antigravity, Continue, and any MCP client
RULE #1: Memory First — ALWAYS
When a user gives you ANY query or task:
- IMMEDIATELY call
agentsmcp_context_briefingwith the user's query as thetaskparameter - Read the returned briefing — it contains relevant files, symbols, decisions, tasks, and relationships from persistent memory
- If the briefing returns results, USE THEM as your starting context instead of reading raw files
- Only fall back to
grep/view_file/read_filewhen the briefing returns empty results
Context Lookup Priority (use in order)
agentsmcp_context_briefing— one-shot task briefing (graph + index combined)agentsmcp_get_index— look up a specific file/symbol by key (~200 tokens vs full file)agentsmcp_search_index— keyword search across all indexed entries (replaces grep)agentsmcp_query_graph— relationship traversal (find connected files/symbols/decisions)- LAST RESORT:
grep/view_file— only when memory has no entry
Setup
Quick Setup (MCP)
AgentMailbox works via MCP. Add this to your MCP configuration:
What ships with it
2 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.
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.
- 6d ago First seen · 267 lines · 75 tokens per session scan A d8aec4414704
agentmailbox is a skill published in the GitHub repository RagavRida/agentsmcp (1 stars, last pushed 1mo ago), licensed MIT. It adds 75 tokens to every session and 2,326 once invoked, about $0.0004 per session on Opus 5. 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.
Other skills, from other repositories
handoff
Write a compact, decision-ready handoff so the next session (or the user) can continue without reconstructing the current one. Use when the session is ending, context is running low, the user asks for a handoff / "pass the baton" / "hand off", or a long-running operation needs a durable state checkpoint.
cao-learning
Report task outcomes and distill lessons so the team improves across runs — reportoutcome after each unit of work, retrospector handoffs at natural boundaries, and applying injected lessons. Use in workflows that run repeatedly over similar work items. Requires memory.learningenabled; degrade silently when the tools…
mem0-integration
Mem0 memory layer integration for AI agents. Implement persistent, semantic memory for long-term context retention and personalization.
session-memory
Mandatory memory persistence system across session resets using three markdown surfaces in .claude/cc10x/. Iron law - every workflow must load at start and update at end.
langchain-memory
LangChain memory integration including ConversationBufferMemory, ConversationSummaryMemory, and vector-based memory.
knowledge-graph-management
Capture, validate, query, and sync architectural patterns and design decisions in the knowledge graph.