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/kivo360/omoios/phase3_multi_agent_coordinationgit clone --depth 1 https://github.com/kivo360/OmoiOSWrote 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/kivo360/omoios/phase3_multi_agent_coordination)<a href="https://agentmods.dev/agents/kivo360/omoios/phase3_multi_agent_coordination"><img src="https://agentmods.dev/badge/agents/kivo360/omoios/phase3_multi_agent_coordination.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.06656 |
| Opus 5 | $0.00000 | $0.03328 |
| Sonnet 5 | $0.00000 | $0.01331 |
| Haiku 4.5 | $0.00000 | $0.00666 |
Grade A, and why
phase3_multi_agent_coordination 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 — 788 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Phase 3 Parallel Agent Prompt – Multi-Agent Coordination
Created: 2025-11-20
Updated: 2025-04-22 (Expanded with architecture details, code references, coordination patterns, and integration guides)
Status: Draft → Active
Purpose: Comprehensive technical specification for implementing Phase 3 parallel multi-agent coordination, covering coordination patterns, agent registry, diagnostic systems, and inter-agent communication protocols.
Related:
docs/design/services/event_bus.md(Event system)docs/design/services/scheduler.md(Task scheduling)docs/requirements/workflows/phase2.md(Phase 2 requirements)docs/requirements/phase1_telemetry.md(Telemetry requirements)docs/implementation_roadmap.md(Implementation timeline)backend/omoi_os/services/coordination.py(Coordination service)backend/omoi_os/services/diagnostic.py(Diagnostic service)backend/omoi_os/services/agent_registry.py(Agent registry)
Overview
Phase 3 introduces parallel multi-agent coordination to the OmoiOS execution pipeline. Unlike earlier phases where agents worked in isolation, Phase 3 enables multiple agents to work concurrently with proper synchronization, resource management, and inter-agent communication.
Core Capabilities
| Capability | Description | Implementation |
|---|---|---|
| Agent Registry | Capability-aware agent discovery and registration | agent_registry.py |
| Coordination Patterns | SYNC, SPLIT, JOIN, MERGE primitives | coordination.py |
| Diagnostic System | Stuck workflow detection and recovery | diagnostic.py |
| Event Bus | Redis-backed pub/sub for agent communication | event_bus.py |
| Task Queue | Priority-based task assignment with dependencies | task_queue.py |
Agent Roles
Phase 3 defines four specialized agent squads that work in parallel:
| Squad | Responsibility | Key Files |
|---|---|---|
| Registry Squad | Agent CRUD, capability management, discovery | agent_registry.py, models/agent.py |
| Collaboration Squad | Inter-agent messaging, handoff protocols | event_bus.py, agent_collab.py |
| Parallel Execution Squad | DAG scheduling, resource locking, concurrency | task_queue.py, scheduler.py |
| Coordination Patterns Squad | SYNC, SPLIT, JOIN, MERGE templates | coordination.py |
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 · 788 lines · 0 tokens per session scan A 45cf1bec54d8
phase3_multi_agent_coordination is an agent published in the GitHub repository kivo360/OmoiOS (75 stars, last pushed 2mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 6,656 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-30.
Other agents, from other repositories
assistant
You are a general-purpose assistant — the example agent that ships with Archie so a fresh install does something useful out of the box. You handle small, self-contained requests: summarizing a block of text, drafting a short reply, or explaining something plainly.
gatekeeper
You exist to exercise the MCP tool approval gate in end-to-end checks. When asked to call your tools, call them exactly as instructed and report exactly what they returned — no improvisation, no retries beyond what the instructions say.
pm
This is the example PM overlay. The text here is appended to the PM agent's system prompt, so use it to give the PM the standing context it needs for your organization — what the company/team does, who the regular requesters are, house style for replies, and any defaults that should hold across every conversation.
external-system-integration-expert
你负责把当前项目与外部 API、API 网关及业务系统安全地连接起来:识别集成边界、整理接口与环境差异、验证请求和响应、定位认证或数据契约问题。.
Audit
Deep security + performance audit of a specific diff. Wraps /skill:security-hardening and /skill:performance-optimization (analysis phase only). Use when a change touches auth, untrusted input, secrets, webhooks, PII, or a latency/throughput budget — a focused, read-only risk pass that returns findings the parent…
nodejs-expert
Specializes in Node.js development, focusing on performance optimization, asynchronous programming, and best practices for building scalable server-side applications.