umao_agents 0.1.1

UMAO coordination for promptfleet A2A agents — AsyncNodeExecutor backed by agent_sdk.
Documentation

umao_agents

UMAO coordination for promptfleet A2A agents — AsyncNodeExecutor backed by agent_sdk.

Specification Lineage

Layer Project License
Specification UMAO spec CSL 1.0
Reference impl umao-rs Apache 2.0
This crate umao_agents Apache 2.0

This crate bridges the vendor-neutral UMAO orchestration engine (umao_core + umao_executor from umao-rs) with the promptfleet agent SDK, dispatching UMAO graph Delegate nodes to real A2A agents.

promptfleet-agents is a registered reference implementation of the UMAO specification.

Usage

use umao_agents::PromptFleetExecutor;

let mut executor = PromptFleetExecutor::new();
executor.register("researcher", "http://localhost:3001");
executor.register("synthesizer", "http://localhost:3002");

Documentation