ArXiv Round Three: Under-Explored Coordination Strategies for AI Models

Goal

Answer the narrower question directly: which coordination strategies still look under-explored on arXiv once “manager and workers” and generic debate loops are set aside?

Short answer

The thinnest serious clusters in this pass are:

  • blackboard and other shared-workspace coordination
  • convergent shared-state coordination such as CRDT-backed observation
  • typed or graph-grounded communication protocols
  • secure and verifiable interoperability layers
  • heterogeneous model ecologies instead of one-model role cloning
  • asynchronous task-graph orchestration
  • mechanism-design style allocation, though that thread is still more adjacent than native to harness research

Strategy clusters

ClusterRepresentative papersWhy it still looks thinHarness implication
Blackboard / shared workspaceSalemi et al., TerrariumThe pattern is live again, but still small compared with planner-worker systemsUse shared artifacts as the substrate and let agents volunteer based on local capability
Convergent shared stateCodeCRDTVery little work treats deterministic merge semantics as the coordination primitivePut conflict handling in the data structure, not only in chat repair loops
Typed communication protocolsLACP, interoperability survey, G2CPProtocol standardization is still in an early, partly position-paper phaseReplace free-text chatter with typed, auditable message surfaces
Secure interoperabilityBlockA2A, VeriGuardTrust, revocation, and runtime guarantees are still not normal design defaultsTreat identity, audit, and action validation as core coordination boundaries
Heterogeneous model teamsX-MASMany MAS papers still assume every role runs the same modelRoute by capability and cost, not only by role label
Asynchronous task graphsDynTaskMASDynamic dependency management is less explored than role promptingMake the task graph explicit and schedule against it directly
Mechanism designMechanism Design for Large Language Models, LLM-AuctionThe mathematics exists, but harness work rarely uses it for task claimingExplore bidding, prices, and externalities for dynamic work allocation

What feels most important

The strongest shift in this corpus is away from “who talks next?” and toward “what shared object or protocol makes coordination legible?” Blackboard systems, CRDT systems, graph-grounded communication, and verified interop all move coordination out of informal chat and into structured state transitions. That is much closer to non-hierarchical-coordination-patterns and work-management-primitives than to ordinary roleplay prompting.

The second shift is that coordination is no longer only about role prompts. orchestration-topologies now has good reason to distinguish topology from substrate, because X-MAS and DynTaskMAS show that model assignment and dependency scheduling can matter as much as the visible team chart. A manager tree with heterogeneous models and an async task graph is a different machine from a manager tree with cloned workers, even if the surface diagram looks similar.

The third shift is defensive. BlockA2A, VeriGuard, and Terrarium all imply that coordination cannot be separated cleanly from trust boundaries. Once multiple agents share data, delegate work, or cross organizational boundaries, authentication, revocation, audit, and verified action surfaces stop being optional polish. They become part of the runtime’s actual semantics, which connects this thread to formal-methods-for-agent-harnesses and safety-and-permissions.

Best bets for this repo

  1. Treat shared workspaces as the default substrate for non-trivial collaboration.
  2. Push toward typed or graph-grounded message formats before adding more roles.
  3. Add a verifier or monitor at promotion boundaries rather than only at the end.
  4. Make heterogeneous model selection and async task graphs first-class work objects.
  5. Read the benchmark papers as evidence that collaboration remains the bottleneck, not as proof that today’s simple orchestration patterns are already adequate.

Read this with non-hierarchical-coordination-patterns, orchestration-topologies, formal-methods-for-agent-harnesses, work-management-primitives, safety-and-permissions, and new-harness-design-notes.