omk 0.5.0

A Rust runtime for Kimi CLI. Turns prompts into proof-backed engineering runs with gates, worktrees, and replay.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use anyhow::Result;

pub(super) fn cmd_agents() -> Result<()> {
    let agents = crate::kimi_native::agent_spec::default_role_agents();
    println!("📋 OMK Role Agents ({}):", agents.len());
    for agent in &agents {
        println!(
            "  • {} — {}",
            agent.id,
            agent.system_prompt.split('.').next().unwrap_or("")
        );
    }
    Ok(())
}