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.
npx agentmods add agents/rizvee/multimodel-dev-os/multimodel-orchestratorgit clone --depth 1 https://github.com/rizvee/multimodel-dev-osWrote 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/agents/rizvee/multimodel-dev-os/multimodel-orchestrator)<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>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 | $0.00000 | $0.00711 |
| Opus 5 | $0.00000 | $0.00356 |
| Sonnet 5 | $0.00000 | $0.00142 |
| Haiku 4.5 | $0.00000 | $0.00071 |
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.
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:
- Role clarity — who does what
- File boundaries — who touches which files
- Session logging — how to pass context between agents
- 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
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.
- 4d ago First seen · 106 lines · 0 tokens per session scan A a1ea4ec23658
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.
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.
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)…
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…
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.
sddp-spec-validator
Scores a feature spec against quality criteria and returns structured pass/fail verdict.
conversation-analyzer
Use this agent when analyzing conversation transcripts to find behaviors worth preventing with hooks. Triggered by /hookify without arguments.