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
#[derive(thiserror::Error, Debug)]
pub enum ClassifierError {
    #[error("input is a slash command (not classifiable)")]
    SlashCommand,
    #[error("input is empty or whitespace")]
    Empty,
    #[error("LLM backend error: {0}")]
    LlmBackend(#[source] anyhow::Error),
    #[error("LLM response malformed: {0}")]
    MalformedLlmResponse(String),
}