phase3_multi_agent_coordination

phase3_multi_agent_coordination is an agent for coding agents from kivo360/OmoiOS. It costs 0 tokens per session (6,656 once invoked), scanned A, original, Apache-2.0.

A technical specification for having several software agents work at the same time on one execution pipeline. It describes how they find each other, coordinate tasks, exchange messages, and diagnose problems.

In plain words
What is it for?
Use it when designing parallel agent workflows, an agent registry, task scheduling, diagnostic services, or communication between agents.
Why use it?
It addresses the coordination problems that arise when independent agents need to share work and stay synchronized. It provides an architecture and integration guidance for this multi-agent setup.

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/kivo360/omoios/phase3_multi_agent_coordination
Clone the repo
git clone --depth 1 https://github.com/kivo360/OmoiOS

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 phase3_multi_agent_coordination

README.md
[![agentmods](https://agentmods.dev/badge/agents/kivo360/omoios/phase3_multi_agent_coordination.svg)](https://agentmods.dev/agents/kivo360/omoios/phase3_multi_agent_coordination)
Your own site
<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>
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 6,656 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.06656
Opus 5 $0.00000 $0.03328
Sonnet 5 $0.00000 $0.01331
Haiku 4.5 $0.00000 $0.00666

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

Security

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.

docs/.archive-20260422-0900/design/agents/phase3_multi_agent_coordination.md · 788 lines

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

Read the full file on GitHub · 788 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 · 788 lines · 0 tokens per session scan A 45cf1bec54d8

Subscribe to this mod's changes

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.

Related

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.

sweatco/archie-hq · 0 tokens

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.

sweatco/archie-hq · 0 tokens

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.

sweatco/archie-hq · 0 tokens

external-system-integration-expert

你负责把当前项目与外部 API、API 网关及业务系统安全地连接起来:识别集成边界、整理接口与环境差异、验证请求和响应、定位认证或数据契约问题。.

agents-universe/agents-universe · 33 tokens

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…

BlackBeltTechnology/pi-agent-dashboard · 98 tokens

nodejs-expert

Specializes in Node.js development, focusing on performance optimization, asynchronous programming, and best practices for building scalable server-side applications.

BlackBeltTechnology/pi-agent-dashboard · 25 tokens