multimodel-orchestrator

multimodel-orchestrator is an agent for coding agents from rizvee/multimodel-dev-os. It costs 0 tokens per session (711 once invoked), scanned A, original, MIT.

A protocol for coordinating multiple AI coding agents working on one codebase. It defines roles, file ownership, permissions, execution order, and session handoffs.

In plain words
What is it for?
Use it to organise architect, implementer, and reviewer agents, whether they work one after another or in parallel.
Why use it?
It reduces conflicting edits and confusion about which agent is responsible for each part of the project.

Agent

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.

agentmods
npx agentmods add agents/rizvee/multimodel-dev-os/multimodel-orchestrator
Clone the repo
git clone --depth 1 https://github.com/rizvee/multimodel-dev-os

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 multimodel-orchestrator

README.md
[![agentmods](https://agentmods.dev/badge/agents/rizvee/multimodel-dev-os/multimodel-orchestrator.svg)](https://agentmods.dev/agents/rizvee/multimodel-dev-os/multimodel-orchestrator)
Your own site
<a href="https://agentmods.dev/agents/rizvee/multimodel-dev-os/multimodel-orchestrator"><img src="https://agentmods.dev/badge/agents/rizvee/multimodel-dev-os/multimodel-orchestrator.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 711 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00000 $0.00711
Opus 5 $0.00000 $0.00356
Sonnet 5 $0.00000 $0.00142
Haiku 4.5 $0.00000 $0.00071

Measured 4d ago against content hash a1ea4ec23658, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

multimodel-orchestrator 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 4d 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.

.ai/agents/multimodel-orchestrator.md · 106 lines

How it starts

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

Multimodel Orchestrator Protocol — v0.1

Specification for coordinating multiple AI coding agents on a single project. v0.1 is a protocol document — runtime implementation comes in v0.2+.

Purpose

When multiple AI tools work on the same codebase, they need:

  1. Role clarity — who does what
  2. File boundaries — who touches which files
  3. Session logging — how to pass context between agents
  4. Conflict prevention — avoid stepping on each other's changes

Agent Roles

Define agents in .ai/config.yaml:

orchestrator:
  agents:
    - name: "architect"
      tool: "claude"
      role: "Design and plan architecture"
      files: ["docs/**", "AGENTS.md", "MEMORY.md"]
      permissions: "read+write"

    - name: "implementer"
      tool: "cursor"
      role: "Write implementation code"
      files: ["src/**", "lib/**", "tests/**"]
      permissions: "read+write"

    - name: "reviewer"
      tool: "codex"
      role: "Review code and suggest fixes"
      files: ["**"]
      permissions: "read-only"

Execution Modes

Mode Behavior
sequential One agent at a time. Session log required between each.
parallel Multiple agents work simultaneously on different file scopes.
supervised Human reviews each agent's output before the next agent starts.

Session Log Protocol

When an agent finishes a task, it writes a session log to .ai/session-logs/:

Session Log Format

# Session: {agent_name} → {next_agent}

**Timestamp:** {ISO 8601}
**Agent:** {tool_name} ({role_name})
**Mode:** {execution_mode}

## Action Summary
{What was done in 2-3 sentences}

## Files Changed
- {path} ({created|modified|deleted})

## Next Steps
1. {Concrete next action}
2. {Another action}

## Blockers
- {Any blockers, or "None"}

## Context for Next Agent
{Any important context the next agent needs}

Naming Convention

.ai/session-logs/{YYYY-MM-DD}-{agent}-{summary}.md

Example: .ai/session-logs/2026-05-30-architect-auth-design.md

Read the full file on GitHub · 106 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. 4d ago First seen · 106 lines · 0 tokens per session scan A a1ea4ec23658

Subscribe to this mod's changes

multimodel-orchestrator is an agent published in the GitHub repository rizvee/multimodel-dev-os (5 stars, last pushed 17d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 711 tokens. 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

security-auditor

Security engineer focused on vulnerability detection, threat modeling, and secure coding practices. Use for security-focused code review, threat analysis, or hardening recommendations.

addyosmani/agent-skills · 35 tokens

codemap

Defines agent personalities (Orchestrator, Explorer, Librarian, etc.) and manages their configuration lifecycle. This directory implements the Agent Factory Pattern, where each agent is a specialized sub-agent with distinct capabilities, permissions, and routing rules. The Orchestrator agent (src/agents/index.ts)…

alvinunreal/oh-my-opencode-slim · 0 tokens

design-reviewer

Design lead + expert design critic. Two modes: Mode A — authors the project's root DESIGN.md (design identity) at project start. Mode B — reviews built UI against DESIGN.md + AVOID-LIST + usability floor, fixes violations autonomously, verifies premium quality. Delegate when: a UI project has no DESIGN.md yet, UI…

wasintoh/toh-framework · 85 tokens

architect

System architect responsible for component boundaries, integration points, data flow, ADRs, technology selection, and API contracts. Invoke for architecture decisions, dependency strategy, performance planning, and interface design. Read-only — produces decisions and documentation.

irahardianto/awesome-agv · 48 tokens

sddp-spec-validator

Scores a feature spec against quality criteria and returns structured pass/fail verdict.

attilaszasz/sdd-pilot · 20 tokens

conversation-analyzer

Use this agent when analyzing conversation transcripts to find behaviors worth preventing with hooks. Triggered by /hookify without arguments.

sifxprime/kodelyth-ecc · 28 tokens