agentctl 0.1.0

Tiny control-plane primitives for AI agents.
Documentation
1
2
3
4
5
6
7
use agentctl::AgentId;

#[test]
fn creates_valid_id() {
    let id = AgentId::new("demo").unwrap();
    assert_eq!(id.0, "demo");
}