orchestration

orchestration is a skill for Claude Code, Codex from LuuOW/meridian-mcp. It costs 41 tokens per session (1,777 once invoked), scanned A, original, MIT.

A guide for coordinating multiple AI agents, including their startup routines, shared memory, task delegation, and communication.

In plain words
What is it for?
Use it to design or run multi-agent workflows, manage session startup, maintain memory files, delegate tasks, and coordinate agent lifecycles.
Why use it?
It gives agents a common way to remember past work, divide responsibilities, and coordinate across sessions.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: mentions subagents; mentions AGENTS.md; built for openclaw.

Good fit Use it to design or run multi-agent workflows, manage session startup, maintain memory files, delegate tasks, and coordinate agent lifecycles.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/luuow/meridian-mcp/orchestration
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.

Any agent
npx skills add LuuOW/meridian-mcp --skill orchestration
Clone the repo
git clone --depth 1 https://github.com/LuuOW/meridian-mcp

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 orchestration

README.md
[![agentmods](https://agentmods.dev/badge/skills/luuow/meridian-mcp/orchestration/github.svg)](https://agentmods.dev/skills/luuow/meridian-mcp/orchestration)
Your own site
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/orchestration"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/orchestration/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 orchestration

Your own site · 80×15
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/orchestration"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/orchestration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,777 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.00041 $0.01777
Opus 5 $0.00020 $0.00889
Sonnet 5 $0.00008 $0.00355
Haiku 4.5 $0.00004 $0.00178

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

Security

Grade A, and why

orchestration 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 9d 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/orchestration/SKILL.md · 211 lines

How it starts

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

orchestration

Covers multi-agent system design: how agents start up, maintain memory, delegate tasks, communicate, and coordinate work across sessions.

1) Agent session startup protocol

# Canonical startup sequence (from AGENTS.md)
1. Read SOUL.md           — identity, principles, non-negotiables
2. Read USER.md           — who you serve, their preferences and goals
3. Read AGENTS.md         — this session protocol and available agents
4. Read memory/TODAY.md   — what happened today so far
5. Read memory/YYYY-MM-DD.md  — yesterday's notes if today's empty
6. Check MEMORY.md index  — long-term context (scan, don't deep-read)
7. Read project README    — only if the task is project-specific

# Total token budget for startup: < 8,000 tokens
# If startup reads exceed this, summarise before proceeding

2) Memory protocol

# Memory file hierarchy
MEMORY_STRUCTURE = {
    "session":    "memory/YYYY-MM-DD.md",       # daily notes, in-progress context
    "index":      "MEMORY.md",                  # persistent long-term index
    "entries":    "memory/",                    # individual memory entries
}

# Daily note format
DAILY_NOTE_TEMPLATE = """
# {date}

## Done today
- {completed_task_1}
- {completed_task_2}

## In progress
- {wip_task}: {status_and_next_step}

## Decisions made
- {decision}: {rationale}

## Blockers
- {blocker}: {what_is_needed}

## Tomorrow
- {priority_1}
"""

# Write to memory after significant work (not after every action)
WRITE_THRESHOLD = "significant decision, completed unit of work, or end of session"

3) Task delegation patterns

# Delegation contract: what to hand off and what to expect back
DELEGATION_SPEC = {
    "task":       str,   # precise instruction (verb-first)
    "context":   str,   # minimum context the sub-agent needs
    "output":    str,   # exact format expected back
    "timeout":   int,   # seconds before assuming failure
    "fallback":  str,   # what to do if delegation fails
}

# Example: orchestrator delegates to a specialist
delegate(
    to="seo-agent",
    task="Analyse SERP for 'keto diet for beginners' and return top-3 citation gaps",
    context=f"Domain: ketoandhealthy.com. Existing article: /keto-diet/beginners",
    output="JSON: [{source_url, gap_type, suggested_citation}]",
    timeout=120,
    fallback="Use cached SERP data from last 24h",
)

Read the full file on GitHub · 211 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. 9d ago First seen · 211 lines · 41 tokens per session scan A 3c12242ba947

Subscribe to this mod's changes

orchestration is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed yesterday), licensed MIT. It adds 41 tokens to every session and 1,777 once invoked, about $0.0002 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

swarmclaw

AI agent runtime and multi-agent orchestration platform. Teaches agents how to use SwarmClaw's 6 primitive tools, persistent memory, dreaming, delegation, connectors, credentials, and the skill system. Use when an agent is running on SwarmClaw and needs to understand the platform's capabilities.

swarmclawai/swarmclaw · 67 tokens

crewai-multi-agent

Multi-agent orchestration framework for autonomous AI collaboration. Use when building teams of specialized agents working together on complex tasks, when you need role-based agent collaboration with memory, or for production workflows requiring sequential/hierarchical execution. Built without LangChain dependencies…

davila7/claude-code-templates · 61 tokens

agent-engineering-expert

Build LLM agents that use tools safely: tool design, the agent loop, memory, MCP servers, multi-agent orchestration, sandboxing and prompt-injection defence. Use when the user mentions AI agents, tool use or function calling, MCP or Model Context Protocol, autonomous workflows, multi-agent systems, LangChain or…

personamanagmentlayer/pcl · 94 tokens

swarmvault

Use when working with a SwarmVault knowledge vault (raw/, wiki/, swarmvault.schema.md). Establishes schema-first conventions and prefers graph queries over broad search.

swarmclawai/swarmclaw · 37 tokens

crewai-multi-agent

Multi-agent orchestration framework for autonomous AI collaboration. Use when building teams of specialized agents working together on complex tasks, when you need role-based agent collaboration with memory, or for production workflows requiring sequential/hierarchical execution. Built without LangChain dependencies…

OpenLAIR/dr-claw · 61 tokens

crewai-multi-agent

Multi-agent orchestration framework for autonomous AI collaboration. Use when building teams of specialized agents working together on complex tasks, when you need role-based agent collaboration with memory, or for production workflows requiring sequential/hierarchical execution. Built without LangChain dependencies…

synthetic-sciences/openscience · 61 tokens