mur-common 2.20.3

Shared types and traits for the MUR ecosystem
Documentation
//! 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.

pub mod conformance;
pub mod plan;
pub mod types;

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