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
10
11
//! `kintsugi-shim`: the `$PATH` interception shim.
//!
//! Symlink this binary as `rm`, `git`, `terraform`, … on a directory prepended
//! to `$PATH`. Each invocation is captured, sent to the daemon, and — on allow —
//! transparently handed off to the real binary.

use std::process::ExitCode;

fn main() -> ExitCode {
    kintsugi_intercept::shim::run()
}