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
// Autopilot state machine — 6-phase pipeline
#![allow(dead_code)] // API surface for future features (run_command, project type detection)

mod cli;
mod engine;
mod helpers;
mod types;

pub use cli::*;
pub use engine::Autopilot;
pub use types::*;