agent-graph-mcp 0.3.0

Run 9 agents at once — MCP server for graph-orchestrated LLM workflows with parallel fan-out (up to 16 nodes), checkpoint/resume, HITL approvals, HMAC receipts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[path = "../src/lifecycle.rs"]
mod lifecycle;
#[test]
fn lifecycle_mapping_has_one_owner() {
    for (s, e) in [
        ("accepted", lifecycle::Lifecycle::Accepted),
        ("running", lifecycle::Lifecycle::Running),
        ("completed", lifecycle::Lifecycle::Completed),
        ("failed", lifecycle::Lifecycle::Failed),
        ("cancelled", lifecycle::Lifecycle::Cancelled),
        ("interrupted", lifecycle::Lifecycle::Interrupted),
    ] {
        assert_eq!(lifecycle::Lifecycle::classify(s), e);
    }
}