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
//! Tree-sitter based code analysis module.
//!
//! Provides parsing and AST querying for Rust, JavaScript, Python, and Go.

pub mod parser;
pub mod query;

pub use parser::{parse_file, Language, SyntaxTree};
pub use query::{find_calls_to, find_function_definitions, CallSite, FunctionDef};