multi-agent-collab

multi-agent-collab is a skill for Claude Code, Codex from LuuOW/meridian-mcp. It costs 60 tokens per session (3,117 once invoked), scanned A, original, MIT.

A guide to running several coding agents in separate Docker containers while sharing one repository clone. The containers communicate over SSH, and each agent can have its own private state.

In plain words
What is it for?
Use it to design container layouts, bind-mount a shared repository, delegate tasks over SSH, manage agent-specific volumes, and coordinate Claude Code, Codex, OpenClaw, or compatible agents.
Why use it?
It prevents multiple agents from maintaining redundant repository clones and defines how to share files without giving every worker unrestricted write access. It also clarifies coordination between the lead agent and workers.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: mentions Claude Code; mentions Codex; built for openclaw.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/agent/.ssh.

Good fit Use it to design container layouts, bind-mount a shared repository, delegate tasks over SSH, manage agent-specific volumes, and coordinate Claude Code, Codex, OpenClaw, or compatible agents.

Compare 6 skills from other repositories ↓
Install

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.

Made for: Claude Code, Codex.

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 multi-agent-collab

README.md
[![agentmods](https://agentmods.dev/badge/skills/luuow/meridian-mcp/multi-agent-collab/github.svg)](https://agentmods.dev/skills/luuow/meridian-mcp/multi-agent-collab)
Your own site
<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.

agentmods 80×15 button for multi-agent-collab

Your own site · 80×15
<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>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,117 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. ✓ AI security review Fable 5.1 · 7 Sept 2026 📄 Read the review
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.00060 $0.03117
Opus 5 $0.00030 $0.01558
Sonnet 5 $0.00012 $0.00623
Haiku 4.5 $0.00006 $0.00312

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

Security

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.

skills/multi-agent-collab/SKILL.md · 363 lines

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:

  1. git clone happens once on the host at /opt/myrepo
  2. Containers bind-mount that directory — no per-container clones
  3. Only the coordinator (or a dedicated repo-sync sidecar) does git pull / git push
  4. Workers write to named volumes for their private scratch state
  5. 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:

Read the full file on GitHub · 363 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. 8d ago First seen · 363 lines · 60 tokens per session scan E 444992e39bf7

Subscribe to this mod's changes

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.

Related

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".

WrongStack/WrongStack · 62 tokens

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.…

nearform/lastlight · 109 tokens

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.

davidtoby/agent-skills · 0 tokens

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".

sbusso/claudeclaw · 68 tokens

create-app-yaml

Scan Dockerfile(s) in the current directory and generate a draft app.yaml for the gateway app store.

0xMaxMa/claude-gateway · 26 tokens

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.

Leonxlnx/taste-skill · 61 tokens