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 recall: \"{query}\" (top {top_k})");
    println!("(Archivist skill — Phase 3, not yet wired)");
    Ok(())
}