Skip to main content

monarchic_agent_protocol/
lib.rs

1pub const PROTOCOL_VERSION: &str = "v1";
2
3pub mod monarchic {
4    pub mod agent_protocol {
5        pub mod v1 {
6            include!(concat!(env!("OUT_DIR"), "/monarchic.agent_protocol.v1.rs"));
7        }
8    }
9}
10
11pub use monarchic::agent_protocol::v1::{AgentRole, Artifact, Event, GateResult, RunContext, Task};