mesh-wrapper

mesh-wrapper is an agent for Claude Code from Zeekeey-jpeg/LeRoy-HQ. It costs 50 tokens per session (8,336 once invoked), scanned A, original, MIT.

A communication layer that lets multiple AI agents exchange messages, delegate tasks, share learned information, and respond to events.

In plain words
What is it for?
Coordinating multi-agent tasks, notifying peers when work is ready, sharing dependencies or patterns, caching knowledge, and resolving conflicts.
Why use it?
It reduces the need for every message to pass through a central coordinator and helps agents work in parallel.

Agent for Claude Code

Written for Claude Code: PostToolUse hook event. Also seen: model in frontmatter; names the TodoWrite tool.

Good fit Coordinating multi-agent tasks, notifying peers when work is ready, sharing dependencies or patterns, caching knowledge, and resolving conflicts.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/zeekeey-jpeg/leroy-hq/mesh-wrapper
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.

Clone the repo
git clone --depth 1 https://github.com/Zeekeey-jpeg/LeRoy-HQ

Made for: Claude Code.

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 mesh-wrapper

README.md
[![agentmods](https://agentmods.dev/badge/agents/zeekeey-jpeg/leroy-hq/mesh-wrapper/github.svg)](https://agentmods.dev/agents/zeekeey-jpeg/leroy-hq/mesh-wrapper)
Your own site
<a href="https://agentmods.dev/agents/zeekeey-jpeg/leroy-hq/mesh-wrapper"><img src="https://agentmods.dev/badge/agents/zeekeey-jpeg/leroy-hq/mesh-wrapper/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mesh-wrapper

Your own site · 80×15
<a href="https://agentmods.dev/agents/zeekeey-jpeg/leroy-hq/mesh-wrapper"><img src="https://agentmods.dev/badge/agents/zeekeey-jpeg/leroy-hq/mesh-wrapper.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 8,336 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.00050 $0.08336
Opus 5 $0.00025 $0.04168
Sonnet 5 $0.00010 $0.01667
Haiku 4.5 $0.00005 $0.00834

Measured 10d ago against content hash 4292362d6088, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

mesh-wrapper 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 10d 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.

core/agents/mesh-wrapper.md · 826 lines

How it starts

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

Agent Mesh Wrapper v3.0 (A2A-Enhanced)

Purpose

Enable lateral agent communication with full A2A protocol semantics — for all tier levels.

v3.0 Key Additions:

  • DELEGATE — any agent can directly task a peer (same tier or below only)
  • SUBSCRIBE/NOTIFY — agents register for events; peers fire notifications when ready
  • CACHE — agents broadcast learned data (selectors, schemas, patterns) to all peers
  • Tier-1 activation — mesh now available for ANY task, not just Tier-2+

Original innovation preserved: Agents communicate directly without orchestrator bottleneck, achieving 2-10x speedup on large tasks through parallel execution and knowledge sharing.

When to Use

  • AUTO-ENABLED (Tier-2+): Tasks with 2+ packets — full mesh with heartbeats
  • ON-DEMAND (Tier-1): Single-packet tasks use A2A lightweight mode (DELEGATE, SUBSCRIBE, CACHE) without full mesh infrastructure
  • Parallel feature work across multiple agents
  • Knowledge sharing between agents (dependencies, conflicts, optimizations, learned selectors)
  • Direct task delegation without conductor round-trip
  • Event-driven pipelines (forge notifies a peer when a batch is ready)

Why All Tiers:

  • A2A DELEGATE/CACHE messages are lightweight — no heartbeat overhead needed
  • A single agent needing peer validation mid-work shouldn't require a Tier-2 mesh spin-up
  • Full mesh (heartbeats, state.json, rate limiting) still only activates at Tier-2+

Protocol

Step 1: Mesh Participation Check

From packet assignment:

  • Count total packets
  • If packets >= 2 → Enable full mesh mode (heartbeats, state.json, rate limiting)
  • If packets < 2 → Enable A2A lightweight mode (DELEGATE/SUBSCRIBE/CACHE only, no heartbeats)
def get_mesh_mode(packet_count):
    """Determine mesh activation level based on packet count."""
    if packet_count >= 2:
        return "full"        # Heartbeats, state.json, full rate limiting
    else:
        return "a2a_lite"    # DELEGATE/SUBSCRIBE/CACHE only, no overhead

Read the full file on GitHub · 826 lines

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. 10d ago First seen · 826 lines · 50 tokens per session scan A 4292362d6088

Subscribe to this mod's changes

mesh-wrapper is an agent published in the GitHub repository Zeekeey-jpeg/LeRoy-HQ (10 stars, last pushed 17d ago), licensed MIT. It adds 50 tokens to every session and 8,336 once invoked, about $0.0003 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.

Related

Other agents, from other repositories

sdk-api-documenter

Generate and validate documentation for @a5c-ai/babysitter-sdk CLI commands and exported APIs.

a5c-ai/babysitter · 25 tokens

ux-evaluator

Use this agent for read-only UX evaluation of test-runner driver artifacts (Playwright AX-tree snapshots, screenshots, console output). Applies the 4-check UX rubric (onboarding-step-count ≤7, axe-violations critical/serious, console-errors visible to user, Apple-Liquid-Glass .glassEffect() conformance on SwiftUI 26+)…

Kanevry/session-orchestrator · 199 tokens

eval-judge

Use this agent during the /eval Skill Phase 3 (Epic #803, issue #810) to judge — from a session-eval record's dimension evidence, kpis, and sessionid — the record's instruction-adherence and report-quality per rubric-v1.md's Judge Dimensions section. Dispatched read-only, coordinator-side (never inside a wave) by…

Kanevry/session-orchestrator · 249 tokens

db-specialist

Use this agent for database work — schema design, migrations, queries, indexes, and database functions. Handles SQL, ORMs, and database architecture decisions. Context: New feature requires database schema changes. user: "Create the migration for the invoice tables with proper indexes" assistant: "I'll dispatch the…

Kanevry/session-orchestrator · 166 tokens

project-discovery

Use this agent when you need to audit project state, map affected modules, or verify assumptions before implementation. Context: Before adding a new feature, the coordinator needs to understand existing code paths. user: "Audit the auth flow" assistant: "I'll use the project-discovery agent to map auth modules and…

Kanevry/session-orchestrator · 0 tokens

technical-writer

Use after implementation to review whether project documentation needs updating. Reads the diff and compares against existing docs to identify gaps and stale content. Produces a structured report — does not rewrite docs itself. Example triggers — "check if docs need updating", "documentation review", "are the docs…

bostonaholic/team · 63 tokens