bctx 0.1.5

bctx CLI — intercept CLI commands and compress output for LLM coding agents
1
2
3
4
5
6
7
use anyhow::Result;

pub fn handle(query: String, top_k: usize) -> Result<()> {
    println!("bctx search: \"{query}\" (top {top_k})");
    println!("(Compass skill — Phase 4, not yet wired)");
    Ok(())
}