Skip to content
/
Phase D Batch 31

Batch 31 — Multi-model routing, oracle & inter-agent communication

Batch 31 — Multi-model routing, oracle & inter-agent communication

Roster (10)

slug stars distribution cli_binary local_ui orchestration multi_model tier
mcp-agent-mail 1958 mcp-server mcp-agent-mail web (port 8765) swarm (peer-to-peer) no A
golembot 285 npm-package golembot web-dashboard none (single-agent) yes (provider-routing) A
orch-oxgeneral 68 npm-package orch/orchestry/ao terminal-tui (Ink) hierarchical yes (adapter-based) A
ccg-workflow 5357 npm-package ccg (installer) none hierarchical + parallel-fan-out yes (Claude+Codex+Gemini) A
octomind-muvon 59 standalone-repo octomind (Rust) terminal + WebSocket hierarchical yes (per-role per-provider) A
forge-sudo-rebase unknown unknown unknown unknown unknown unknown C
adal unknown proprietary unknown web (sylph.ai) hierarchical (marketing) unknown C
axon unknown unknown unknown unknown unknown unknown C
claude-oracle unknown unknown unknown unknown unknown unknown C
directories-leerob 3936 other (cursor-plugins) unknown web (cursor.directory) none no C

Intra-batch patterns

Five of the ten assigned repos are Tier A with rich public material; five are Tier C (three 404s, one proprietary SaaS with no source code, one URL that resolves to an unrelated Cursor community plugins repo). Among the researchable five, the dominant pattern is heterogeneous model routing — every Tier A framework except MCP Agent Mail explicitly dispatches requests to different LLM providers or models for different roles. GolemBot's "provider routing" (same engine, different vendor) and Octomind's "per-role per-provider TOML" represent opposite ends of the routing granularity spectrum. CCG Workflow's explicit Claude+Codex+Gemini trinity is the most opinionated model assignment in the corpus. MCP Agent Mail is the outlier — it is not a routing framework but a coordination bus (passive, peer-to-peer), which still qualifies for this batch because it enables multi-model coordination by being model-agnostic infrastructure. ORCH is notable for having three CLI aliases for the same binary (orch, orchestry, ao) and a formally specified DDD layered architecture with dependency injection.

Most interesting find

CCG Workflow (ccg-workflow): The loop detection mechanism in workflow-state.js — detecting when Claude repeats the same phase+nextAction 3+ times and injecting a numbered "BREAK-LOOP PROTOCOL" with branching options (try alternative / escalate / upgrade strategy) — is a novel meta-cognitive self-recovery primitive not found in any other framework analyzed across all batches. Combined with the codeagent-wrapper Go binary that manages Codex + Gemini subprocess invocation (with Windows cmd.exe multi-line arg workarounds and Gemini session_id parsing), this is the most production-battle-tested multi-model routing implementation in the batch.

Octomind (octomind-muvon): The tap registry pattern — community specialists published as one-file TOML manifests, installed with octomind tap <github-repo>, immediately accessible as octomind run doctor:blood — is a package manager for specialist agents. Combined with hard USD spending thresholds (actually stops execution, doesn't just warn) and cache-aware adaptive compaction, this is the most architecturally complete agent runtime in the batch.

Items written as Tier C

slug reason
forge-sudo-rebase HTTP 404 — repository does not exist under assigned URL
adal No public GitHub repo; sylph.ai is proprietary SaaS with no accessible source code
axon HTTP 404 — repository does not exist under assigned URL
claude-oracle HTTP 404 — repository does not exist under assigned URL
directories-leerob URL (github.com/leerob/directories) redirects to cursor/community-plugins, an unrelated Cursor community plugin collection

Cross-references discovered

  • mcp-agent-mail ↔ Beads ecosystem: Jeffrey Emmanuel (Dicklesworthstone) is the author of both. The install script bundles MCP Agent Mail with Beads Rust (br) and Beads Viewer (bv). This is a direct cross-batch link to Phase B Batch 11/25 (Beads task tracker analysis).
  • ccg-workflow credits mindfold-ai/Trellis: For the hook-based workflow state pattern. Trellis was analyzed in another batch; the explicit credit establishes a derivation link.
  • ccg-workflow credits cexll/myclaude: For the codeagent-wrapper inspiration. This links to the broader Chinese Claude Code community on linux.do.
  • orch-oxgeneral + openspec: The /ccg:spec-* commands in CCG Workflow explicitly implement the OpenSpec flow (spec-research → spec-plan → spec-impl → spec-review), making CCG a client of the OpenSpec specification pattern (seed framework).
  • golembot + ClawHub: GolemBot's 13,000+ skill count is sourced from the ClawHub community ecosystem, making it the largest community skill registry reference in this batch.