Getting it into your agent
There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.
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.
[](https://agentmods.dev/skills/luuow/meridian-mcp/multi-agent-collab)<a href="https://agentmods.dev/skills/luuow/meridian-mcp/multi-agent-collab"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/multi-agent-collab/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.
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/multi-agent-collab"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/multi-agent-collab.svg" alt="Reviewed on agentmods" width="80" 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.00060 | $0.03117 |
| Opus 5 | $0.00030 | $0.01558 |
| Sonnet 5 | $0.00012 | $0.00623 |
| Haiku 4.5 | $0.00006 | $0.00312 |
Grade A, and why
multi-agent-collab 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 8d 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 — 363 lines — stays where its author put it; the contents beside it link to each section on GitHub.
multi-agent-collab
Architecture for running multiple AI coding agents (Claude Code, Codex CLI, OpenClaw or any OpenAI-compatible gateway) each in their own Docker container, with:
- One repo clone shared via
/opt/bind mount — never cloned N times - Inter-agent SSH for task delegation and status exchange
- Named volumes for each agent's private state
- A coordinator container that routes tasks and aggregates results
1) Mental Model
Host /opt/myrepo (single git clone — read/write by coordinator, read-only by workers)
│
├── agent-coordinator (Claude Code) — orchestrates, assigns tasks, merges
│ ├── SSH → agent-codex
│ ├── SSH → agent-openclaw
│ └── bind: /opt/myrepo (read-write)
│
├── agent-codex (OpenAI Codex CLI)
│ ├── SSH ← coordinator (receives task specs)
│ └── bind: /opt/myrepo (read-only or scoped subdir)
│
└── agent-openclaw (OpenClaw gateway)
├── SSH ← coordinator
└── bind: /opt/myrepo (read-only or scoped subdir)
Key rules:
git clonehappens once on the host at/opt/myrepo- Containers bind-mount that directory — no per-container clones
- Only the coordinator (or a dedicated
repo-syncsidecar) doesgit pull/git push - Workers write to named volumes for their private scratch state
- Agents communicate via SSH, not shared memory or Docker networks directly
2) docker-compose Topology
# docker-compose.agents.yml
services:
# ── Coordinator ────────────────────────────────────────────────────────
agent-coordinator:
build:
context: ./agents/coordinator
dockerfile: Dockerfile
container_name: agent-coordinator
restart: unless-stopped
volumes:
- /opt/myrepo:/opt/myrepo # read-write (does git ops)
- coordinator-state:/home/agent/.local # private state
- /opt/keys:/opt/keys:ro # SSH keys to reach workers
environment:
ANTHROPIC_API_KEY: "${ANTHROPIC_API_KEY}"
AGENT_CODEX_HOST: agent-codex
AGENT_OPENCLAW_HOST: agent-openclaw
networks:
- agents
extra_hosts:
- "host.docker.internal:host-gateway"
# ── Codex Worker ───────────────────────────────────────────────────────
agent-codex:
build:
context: ./agents/codex
dockerfile: Dockerfile
container_name: agent-codex
restart: unless-stopped
volumes:
- /opt/myrepo:/opt/myrepo:ro # read-only — no direct git push
- codex-workspace:/workspace # private scratch volume
- /opt/keys/codex_authorized_keys:/home/agent/.ssh/authorized_keys:ro
environment:
OPENAI_API_KEY: "${OPENAI_API_KEY}"
REPO_PATH: /opt/myrepo
networks:
- agents
# ── OpenClaw Worker ────────────────────────────────────────────────────
agent-openclaw:
build:
context: ./agents/openclaw
dockerfile: Dockerfile
container_name: agent-openclaw
restart: unless-stopped
volumes:
- /opt/myrepo:/opt/myrepo:ro
- openclaw-workspace:/workspace
- /opt/keys/openclaw_authorized_keys:/home/agent/.ssh/authorized_keys:ro
environment:
OPENAI_API_KEY: "${OPENAI_API_KEY}"
OPENCLAW_BASE_URL: "${OPENCLAW_BASE_URL}"
networks:
- agents
networks:
agents:
driver: bridge
volumes:
coordinator-state:
codex-workspace:
openclaw-workspace:
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.
- 8d ago First seen · 363 lines · 60 tokens per session scan E 444992e39bf7
multi-agent-collab is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed today), licensed MIT. It adds 60 tokens to every session and 3,117 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.
Other skills, from other repositories
docker-deploy
Use this skill when building, containerizing, or deploying WrongStack with Docker. Triggers: user says "docker", "container", "dockerfile", "image", "docker-compose", "deploy", "containerize", "registry", "multi-stage", "distroless".
lastlight-server
Install and configure a Last Light SERVER — the GitHub maintenance agent plus its docker-compose stack — on a host. Use when the user wants to "set up / install / deploy / stand up a Last Light server or instance", configure its GitHub App, models, managed repos, or domain, or get the agent running for the first time.…
openclaw-browser-auto
A setup guide for connecting OpenClaw, an AI-agent platform, to a remote Chrome browser through CDP, a browser control interface. It covers Docker-hosted browsers and Browserless.io, a hosted browser service.
convert-to-apple-container
Switch from Docker to Apple Container for macOS-native container isolation. Use when the user wants Apple Container instead of Docker, or is setting up on macOS and prefers the native runtime. Triggers on "apple container", "convert to apple container", "switch to apple container", or "use apple container".
create-app-yaml
Scan Dockerfile(s) in the current directory and generate a draft app.yaml for the gateway app store.
design-taste-frontend
Anti-slop frontend skill for landing pages, portfolios, and redesigns. The agent reads the brief, infers the right design direction, and ships interfaces that do not look templated. Real design systems when applicable, audit-first on redesigns, strict pre-flight check.