Builds 13 projects
The Workbench
Things I build in Rust and systems, plus the security tools I keep around for fun.
- Identra A desktop canvas for running coding agents, with a memory that survives the session. Rust engine, Tauri shell, React canvas.
- vyrox-proxy The Rust containment proxy behind Vyrox Security. An axum service that verifies HMAC-signed actions, writes an append-only audit log, and never executes containment without human approval.
- termino Decentralized, NAT-traversing P2P comms over WebRTC, libp2p, and IPFS. Encrypted messaging, file sharing, and audio/video calls straight from the terminal.
- raftkit-mini A minimal Raft key-value store: openraft + sled with lease-based reads. Leader election, log replication, and linearizable reads, small enough to actually read end to end.
- dedcore High-performance CLI for finding and managing duplicate and similar files. Multi-algorithm hashing (Blake3, xxHash) and parallel processing for maximum speed.
- rtb-cg A Rust codegen backend bridging rustc with the TPDE single-pass compiler, for fast, predictable code generation.
- rustykeir Keir Lang: a small programming language of my own, because 9000 languages weren't enough. Lexer, parser, and interpreter in Rust.
- jailbreak-fable High-fidelity emulator of Claude Fable 5's (Mythos) guardrails paired with an automated multi-agent jailbreak lab. Coordinated agents (the Pack Hunt) hammer a faithful clone of the target, then write up the breaks that actually landed.
- nyx Tor identity rotator with a real-time TUI. Rotate circuits on demand and watch every hop go by.
- noxy A fast, extensible forwarding proxy in C with DNS-over-HTTPS and custom routing. Your traffic is your business.
- DeepSentry Unsupervised anomaly detection in system logs.
- Dora-rs - Metadata::get_or Added Metadata::get_or for cleaner parameter access with defaults, reducing boilerplate and improving ergonomics in dora-rs.
- Rust Clippy - useless_conversion lint Enhanced .into_iter() suggestions for nested references, fixing over-borrowed code patterns in the official Rust linter.