Builds 13 projects

The Workbench

Things I build in Rust and systems, plus the security tools I keep around for fun.

  1. Identra A desktop canvas for running coding agents, with a memory that survives the session. Rust engine, Tauri shell, React canvas.
  2. 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.
  3. termino Decentralized, NAT-traversing P2P comms over WebRTC, libp2p, and IPFS. Encrypted messaging, file sharing, and audio/video calls straight from the terminal.
  4. 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.
  5. dedcore High-performance CLI for finding and managing duplicate and similar files. Multi-algorithm hashing (Blake3, xxHash) and parallel processing for maximum speed.
  6. rtb-cg A Rust codegen backend bridging rustc with the TPDE single-pass compiler, for fast, predictable code generation.
  7. rustykeir Keir Lang: a small programming language of my own, because 9000 languages weren't enough. Lexer, parser, and interpreter in Rust.
  8. 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.
  9. nyx Tor identity rotator with a real-time TUI. Rotate circuits on demand and watch every hop go by.
  10. noxy A fast, extensible forwarding proxy in C with DNS-over-HTTPS and custom routing. Your traffic is your business.
  11. DeepSentry Unsupervised anomaly detection in system logs.
  12. Dora-rs - Metadata::get_or Added Metadata::get_or for cleaner parameter access with defaults, reducing boilerplate and improving ergonomics in dora-rs.
  13. Rust Clippy - useless_conversion lint Enhanced .into_iter() suggestions for nested references, fixing over-borrowed code patterns in the official Rust linter.