falsegreen 0.1.16

FalseGreen client — independent verification for coding agents
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! FalseGreen client shim.
//!
//! This crate provides the `falsegreen` binary — a tiny Rust CLI that:
//! - bridges STDIO MCP to the FalseGreen verification engine
//! - manages authentication credentials
//! - installs itself into agent configurations (Codex)
//!
//! The actual verification logic lives server-side.
//! This shim is intentionally boring.

pub mod cli;
pub mod config;
pub mod device;
pub mod install;
pub mod mcp;
pub mod workspace;