kintsugi-intercept 0.1.0

Kintsugi interception adapters: the $PATH shim, the Claude Code hook bridge, and the kintsugi-exec MCP server. All normalize to one ProposedCommand.
Documentation
1
2
3
4
5
6
7
8
9
//! `kintsugi-mcp`: the `kintsugi-exec` MCP server (JSON-RPC over stdio).
//!
//! Point a tool-calling agent (Qwen, Codex, custom) at this binary as an MCP
//! server. It exposes one tool, `kintsugi-exec`, which runs a shell command guarded
//! and recorded by Kintsugi. See `kintsugi init` for per-agent wiring.

fn main() -> anyhow::Result<()> {
    kintsugi_intercept::mcp::run()
}