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)]

pub mod bus;
pub mod event_stream;
pub mod goal_progress;
pub mod hud;

#[cfg(feature = "tui")]
pub mod engine;

#[cfg(feature = "tui")]
pub mod hud_tui;

#[cfg(feature = "server")]
pub mod server;

#[cfg(feature = "tui")]
pub mod shell;