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
15
16
17
18
#![allow(dead_code)]

mod api;
mod artifact;
mod execution;
mod provider;
mod synthesis;

#[cfg(test)]
mod tests;

pub use api::{ask_all, ask_providers, ask_single};
pub use artifact::{artifact_dir, artifact_path, save_artifact, save_artifact_to};
pub use execution::{poll_outbox, run_advisor_direct};
pub use provider::{
    available_providers, is_known_provider, is_provider_installed, provider_command, ALL_PROVIDERS,
};
pub use synthesis::{build_synthesis_prompt, synthesize};