cal_core/agent/
mod.rs

1// File: cal-core/src/agent/mod.rs
2
3pub mod status;
4pub mod channel;
5
6pub use status::*;
7pub use channel::*;
8
9/// Generate a consistent agent ID from user ID
10pub fn generate_agent_id(user_id: &str) -> String {
11    format!("agent-{}", user_id)
12}