Skip to main content

Module coordination

Module coordination 

Source
Expand description

Coordination protocol types for multi-step agent workflows.

This module defines the shared vocabulary for Plans, Steps, Microsteps, SDLC phases, determinism modes, failure categories, and recovery actions. It is the single source of truth for both mur-commander and mur-runtime.

§Conformance

Hosts implement ConformanceAdapter and pass PlanLoadingSuite to prove they parse and validate plans correctly. See the tests/coordination_conformance.rs integration test for the 10-test suite.

Re-exports§

pub use conformance::ConformanceAdapter;
pub use conformance::PlanLoadingSuite;
pub use plan::Plan;
pub use plan::Step;
pub use types::ConformanceLevel;
pub use types::DeterminismMode;
pub use types::FailureCategory;
pub use types::Phase;
pub use types::RecoveryAction;

Modules§

conformance
Conformance testing framework (§10).
plan
Plan schema (§4) — TOML deserialization, validation, content hashing.
types
Shared coordination types (§3, §7, §8 of the coordination protocol spec).