Skip to content
View Dicklesworthstone's full-sized avatar

Sponsors

@SuperuserLabs
@ErikBjare
Private Sponsor
@Hades2005-droid
@Mbrilman
@cjonesde

Block or report Dicklesworthstone

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Dicklesworthstone/README.md

Jeffrey Emanuel

Jeffrey Emanuel

New York · Builder & engineer · Former long/short equity analyst

Rust TypeScript Python Go Next.js React Three.js Claude Bash SQLite

Building the tooling that lets dozens of AI agents ship complex projects in days.

Stars: 31,630+ Projects: 200 Contributions: 267,828 Followers: 3,300+ X: 48.7K

Website Prompts Flywheel Brenner FrankenTUI Skills MCPMail FrankenSQLite Asupersync FrankenMarkdown FrankenOCR FrankenWhisper ASImposium ClassicPatents FrankenMermaid Smeared Life JazzChords Discord

Multi-Agent Coordination · Agentic Coding · Rust CLI Tools · LLM Applications · Terminal UI · FrankenSuite

Flywheel · Asupersync · FrankenSuite · Building Now · Open Source · Nvidia Thesis · Writing · Products · Philosophy · Connect

GitHub Stats Top Languages

Note

267,828 contributions in the past year. I use 63 AI coding agent subscription accounts (~$13.5K/month) and the Flywheel tools below. Most of those contributions landed after January 2026.


The Agentic Coding Flywheel

Fourteen tools for multi-agent software development: messaging and file leases, issue graphs, session search, command safety, and tmux orchestration. I started building the stack in October 2025. Join the Flywheel Hub Discord (~958 members), read the full guide, or start with the introductory guide.

The Agentic Coding Flywheel: 14 tools for multi-agent development

Tool Stars Lang Purpose
MCP Agent Mail Stars Python Gmail for coding agents: messaging, file leases, audit trails
DCG Stars Rust SIMD-accelerated guard that blocks rm -rf and git reset --hard
Beads Viewer Stars Go PageRank-powered task prioritization in a keyboard-driven TUI
Flywheel Setup Stars Bash Installs and configures all 14 Flywheel tools on an Ubuntu VPS in about 30 minutes
Beads Rust Stars Rust Local-first, non-invasive issue tracker for git repos
CASS Stars Rust Unified search across 22 AI coding tool histories
CASS Memory Stars TypeScript Three-layer cognitive memory: episodic, working, procedural
UBS Stars Bash 1,000+ pattern-based bug scanner, runs before every commit
NTM Stars Go Multi-agent tmux orchestration with animated dashboards
Meta Skill Stars Rust Skill management platform with CASS mining and MCP server
XF Stars Rust Sub-millisecond search over X/Twitter data archives
SLB Stars Go Two-person rule: peer approval before dangerous commands
RU Stars Bash Keep hundreds of Git repos in sync with one command
GIIL Stars Bash Download full-res images from iCloud/Dropbox share links

Quick Install

Tip

Install the full stack on an Ubuntu VPS:

curl -fsSL "https://raw.githubusercontent.com/Dicklesworthstone/agentic_coding_flywheel_setup/main/install.sh" | bash -s -- --yes --mode vibe

Install an individual Rust tool with Cargo:

cargo install xf  # xf: X/Twitter archive search

Other Flywheel tools (CASS, DCG, Beads Rust) install from source via the Flywheel Setup script or cargo install --git.

Agent Mail in Action

Agent Mail coordinating agents with threads, file leases, and audit trails


Asupersync: The Runtime Foundation

Asupersync is my spec-first, cancel-correct, capability-secure async runtime for Rust. Its API makes task ownership, cancellation, cleanup, and effect authority explicit. It supplies shared concurrency and evidence infrastructure across much of FrankenSuite, including common kernel, decision, and evidence crates.

Asupersync architecture: regions own tasks and close to quiescence

Structural idea Why it matters
Owned concurrency Every runtime-spawned task belongs to a region. A region closes after its children finish and its finalizers and registered obligations resolve.
Cancellation as a protocol Cancellation follows request → drain → finalize. Two-phase reserve/commit primitives prevent cancellation from leaving half-published effects.
Capability-scoped context An explicit Cx carries runtime authority, cancellation, budgets, and tracing, so side-effect authority is visible and controllable.
Reproducible concurrency The Lab runtime provides virtual time, deterministic scheduling, trace replay, and race-guided schedule exploration. Timing-dependent failures become repeatable tests.
Machine-checked model Lean checks six core invariants in the formal operational model. franken-kernel, franken-evidence, franken-decision, and frankenlab supply shared types, evidence ledgers, decision contracts, and replay tooling.

Asupersync combines an executor, lifecycle contracts, capability controls, and deterministic concurrency tests. FrankenTerm uses it as its production async runtime; FrankenSearch threads Cx through index construction; FrankenSQLite and FrankenGit build their RaptorQ durability components on its encoding and decoding code; and FrankenEngine enables the shared kernel, decision, and evidence crates by default.

Project Site · API Docs · Interactive WASM Demo


The FrankenSuite

The FrankenSuite spans databases, terminals, numerical computing, media, graphs, and simulation. Many projects are clean-room Rust reimplementations that preserve important APIs, file formats, and protocols while adding memory safety, deterministic execution, concurrent data structures, or repairable storage.

Project Stars What it does
FrankenOCR Stars Baidu Unlimited-OCR (3B MoE VLM) on CPU in pure Rust. Five supported models, custom int8 kernels, no Python.
FrankenSQLite Stars SQLite in Rust with page-level MVCC concurrent-writer support and RaptorQ durability components.
FrankenTUI Stars Terminal UI rendering in Rust across 20 crates, with 80+ widget and stateful-widget implementations.
FrankenTerm Stars WezTerm fork with pane capture, state-machine detection, and a JSON control API for AI-agent swarms.
FrankenMarkdown Stars Markdown to HTML and tagged PDF. Zero-dependency engine: own parser, typesetter, font subsetter, PDF writer.
FrankenSearch Stars Two-tier hybrid search: HNSW ANN + Tantivy full-text + cross-encoder reranking.
FrankenEngine Stars Rust runtime for untrusted extensions, with deterministic replay and cryptographic execution receipts.
FrankenNode Stars JS/TS runtime built on FrankenEngine, with migration analysis and per-extension trust cards.
FrankenLibC Stars Rust libc interposition layer loaded through LD_PRELOAD to check memory operations in existing C programs.
FrankenFS Stars ext4/btrfs in Rust via FUSE, with block-level MVCC and RaptorQ repair.
FrankenRedis Stars Redis protocol implementation in Rust with a Deterministic Latency Replication Core.
FrankenPandas Stars Dataframe engine in safe Rust with pandas-style APIs, columnar storage, and differential conformance against a live pandas oracle.
FrankenJAX Stars JAX transform semantics (jit, grad, vmap) with JAXPR-like IR. 162 primitives, full AD, 864 oracle cases.
FrankenTorch Stars PyTorch reimplementation with Deterministic Autograd Contract.
FrankenNumPy Stars NumPy in Rust. 10 crates, 8,100+ tests, bit-exact RNG parity. Unsafe forbidden outside the PyO3 binding layer.
FrankenSciPy Stars SciPy with Condition-Aware Solver Portfolio (CASP).
FrankenMermaid Stars Mermaid diagram engine. 24 diagram types, deterministic layout, WASM-ready.
FrankenWhisper Stars Whisper speech recognition in Rust. No Python dependency.
FrankenTTS Stars Qwen3-TTS zero-shot voice cloning on CPU in pure Rust, with custom int8 kernels, voice cards, and WASM, iOS, and FFI targets.
FrankenNetworkX Stars NetworkX graph library in Rust with Python bindings.
FrankenSim Stars Simulation workspace for geometry, numerics, meshing, solvers, optimization, and rendering. 126 contract-backed crates.
Franken Surveillance System Stars Local-first sensor system for owner-authorized cameras and capture drones, with evidence tracking built into the data model.
Franken Drone Geometry Reconstruction Stars Produces semantic 3D models from owner-authorized drone video with traceable geometric evidence.
FrankenLean Stars Lean 4 toolchain in Rust: parser, elaborator, dual-engine kernel, VM, .olean support, and C-ABI compatibility. 32 crates.
FrankenGraphDB Stars Property-graph storage engine in Rust: MVCC, time-travel, branches, and replication over a fountain-coded commit stream.
FrankenGit Stars Source-available, Git-compatible Rust forge for humans and coding agents, with verifiable recovery and an immutable decision stream.
FrankenSymPy Stars Proof-carrying symbolic mathematics in Rust, with exact arithmetic, a proof kernel, and a Python compatibility layer.
FrankenOverlap Stars Sparse-spectral textual overlap detection and approximate alignment. Rare-feature retrieval, anchor chaining, exact verification.
FrankenManim Stars Deterministic rewrite of 3b1b's manim. Native TeX math typesetting (no LaTeX), analytic Bezier renderer, bit-reproducible renders.
FrankenSnowflake Stars Native Snowflake driver in Rust. 14 crates, direct SQL API access, no ODBC or JDBC.

What I'm Building Now

Ranked by live default-branch activity over the trailing 14 days: commits × log₂(2 + aggregate changed lines). Line totals compare the branch at the start and end of the window.

Project Lang 14-day activity What it does
FrankenTerm Rust 780 commits
+271,181 / −67,457 lines
WezTerm-based terminal for AI-agent swarms, with pane capture, state-machine detection, and a JSON control API.
FrankenSim Rust 811 commits
+184,591 / −14,540 lines
Rust geometry, simulation, optimization, and rendering workspace with contract-backed kernels.
Pi Agent Rust Rust 760 commits
+152,137 / −16,155 lines
Rust coding-agent CLI with sub-100ms startup, eight built-in tools, session branching, and a roughly 15 MB binary.
FrankenMermaid HTML 521 commits
+3,200,370 / −10,968 lines
Rust diagram engine with 15 layout algorithms and deterministic SVG, Canvas, terminal, and WASM rendering.
Cmaes Explainer TypeScript 568 commits
+806,840 / −9,435 lines
An introduction and explanation of the incredible CMA-ES optimization algorithm.
MCP Agent Mail Rust Rust 638 commits
+110,895 / −31,798 lines
Rust MCP server for multi-agent coordination: 34 tools, Git-backed archive, SQLite indexing, advisory file locks, and an interactive TUI console
CASS Rust 622 commits
+109,648 / −12,567 lines
Unified TUI and CLI to index and search your local coding agent session history across 11+ providers (Codex, Claude, Gemini, Cursor, Aider, etc.)
FrankenGit Rust 609 commits
+123,101 / −2,319 lines
Git-compatible forge for human and coding-agent workflows, with verifiable recovery, self-hosting, and an immutable decision stream.
FrankenSymPy Rust 579 commits
+109,218 / −2,878 lines
Recently active public project
Dwarf Fortress MCP Rust 563 commits
+109,291 / −0 lines
A semantic, transactional, replayable MCP control plane that lets autonomous AI agents operate Dwarf Fortress as a long-lived civilization. Safe-Rust phase-0B scaffold: MVCC world state, witnessed semantic plans, evidence-backed effects, deterministic replay.
FrankenTorch Rust 573 commits
+51,801 / −935 lines
Clean-room Rust implementation of PyTorch with deterministic autograd, compatibility modes, differential tests, and RaptorQ-backed durability.
FrankenMarkdown HTML 521 commits
+134,435 / −9,229 lines
Pure-Rust, dependency-lean, ultra-fast Markdown -> beautiful all-in-one HTML & tiny optimized PDF (library + single-binary CLI: fmd)

Live Demos

FrankenTUI Web Demo
FrankenTUI Web Demo
Pure TypeScript terminal UI running in the browser
FrankenTUI React Demo
FrankenTUI React Demo
React component wrapper for FrankenTUI widgets
FrankenSQLite
FrankenSQLite
Clean-room Rust version of SQLite
Agent Flywheel
Agent Flywheel
Setup wizard for installing and configuring all 14 Flywheel tools
Brenner Bot
Brenner Bot
Multi-agent research orchestration using Sydney Brenner's methods
Jeffrey's Skills
Jeffreys-Skills.md
Paid SaaS for Claude Code skill management
MCP Agent Mail
MCPAgentMail.com
Coordination layer for AI coding agents
Asupersync
Asupersync.com
Cancel-correct async runtime for Rust
Jeffrey Emanuel: TL;DR
jeffreyemanuel.com/tldr
The short version of everything I'm working on
FrankenMarkdown
Franken-Markdown.com
Markdown to HTML and tagged PDF, as WASM in your browser
FrankenOCR
Franken-OCR.com
A 3-billion-parameter OCR model running in a browser tab
FrankenWhisper
Franken-Whisper.com
Whisper transcription and speaker diarization, client-side
FrankenTTS
FrankenTTS.com
Zero-shot voice cloning from a Rust CPU engine
Classic Patents
Classic-Patents.com
Landmark patents restored, explained, and simulated in 3D
ASImposium
ASImposium.org
A public scientific ledger where sponsored AI agents publish and referee
FrankenMermaid
FrankenMermaid.com
Deterministic Mermaid-compatible diagrams rendered live by Rust and WASM
Smeared Life
SmearedLife.com
GPU-powered laboratory for emergent continuous cellular automata
JazzChords.org
JazzChords.org
Offline-first studio for composing and exploring jazz chord progressions

Open Source Highlights

AI & LLM Tools

Project Description
Stars LLM-Aided OCR Uses language models to correct OCR errors that rule-based postprocessing misses.
Stars Swiss Army Llama FastAPI service for local LLM inference and semantic search.
Stars Your Source to Prompt Browser tool that selects codebase files and packages them into model-ready prompts.
Stars Bulk YouTube Transcriber Converts YouTube playlists into structured, searchable text with Whisper.
Stars Claude Code Agent Farm Runs parallel Claude Code agents against repositories across 36 tech stacks.
Stars Mindmap Generator Distills documents into hierarchical, context-aware mindmaps using non-linear exploration.
Stars Ultimate MCP Client MCP client for connecting models to tools, resources, and prompts across MCP servers.
Stars Ultimate MCP Server MCP server exposing dozens of tools to language models.
Stars Markdown Web Browser Headless browser that renders modern JavaScript-heavy sites into clean Markdown for agents.
Stars LLM Tournament Automated multi-round coding tournaments where models critique and merge each other's solutions, scored on complexity and performance.
Stars Dwarf Fortress MCP MCP server for semantic, replayable Dwarf Fortress control through an authenticated DFHack bridge.

Systems & Rust

Project Description
Stars Fast Vector Similarity Rust library for complex vector similarity metrics with Python bindings.
Stars FrankenTUI Terminal UI rendering kernel used by CASS and other Rust TUI applications.
Stars FrankenSQLite Clean-room SQLite implementation in Rust with page-level MVCC concurrency and RaptorQ durability components.
Stars FrankenTerm WezTerm fork with pane capture, state-machine detection, and a JSON control API for AI-agent swarms.
Stars Asupersync Structured concurrency runtime with regions, cancel-correct protocols, and capability-scoped context. Foundation for Pi Agent Rust and FastMCP Rust.
Stars Asupersync ANSI C Dependency-free ANSI C port of Asupersync with deterministic replay, resource contracts, and nine profiles from HFT servers to routers.
Stars Rich Rust Port of Python's Rich. Markup syntax, tables, progress bars, syntax highlighting for 75 languages. Zero unsafe.
Stars FastMCP Rust MCP framework built on Asupersync, with attribute macros for tools and resources plus automatic timeout budgets.
Stars Charmed Rust Rust implementations of Bubble Tea, Lip Gloss, Bubbles, Huh, Glamour, and Wish SSH apps. Zero unsafe.
Stars OpenTUI Rust Terminal rendering engine with RGBA alpha blending, scissor clipping, and diffed double buffers.
Stars TOON Rust Spec-first port of TOON, the token-efficient JSON alternative for LLM context. Streaming decode, no Node runtime.
Stars FastAPI Rust FastAPI-style APIs on Asupersync, with type-driven extractors, cancel-correct handlers, and compile-time routes.
Stars SQLModel Rust Port of Python's SQLModel. Derive-macro models, type-safe multi-dialect queries, hand-rolled Postgres/MySQL wire protocols.
Stars Fast CMA-ES SIMD-accelerated, Rayon-parallelized evolution strategy optimizer in Rust.
Stars Rust ScriptBots Deterministic, GPU-accelerated Rust implementation of Karpathy's ScriptBots artificial life simulator.
Stars UltraSearch Windows file search using NTFS USN journals and Tantivy.

Research & Science

Project Description
Stars Bio-Inspired Nanochat Transformer experiments with metabolically regulated weights, synaptic fatigue, and structural plasticity.
Stars Model-Guided Research Eleven mathematical frameworks for AI, including Lie group attention, p-adic spaces, and tropical geometry.
Stars ACIP AI Cognitive Inoculation Protocol: defense against prompt injection via external monitoring.
Stars Brenner Bot Multi-agent research system based on Sydney Brenner's scientific methods.
LLM Introspective Compression Treats LLM context as a save state for reasoning backtracking and metacognitive control.
Stars Epstein Email Search Client-side search over the Epstein email corpus using SQLite-WASM, FlexSearch, and a zlib text pack.
Stars Phage Explorer Interactive educational site exploring bacteriophages with 3D visualization.

Developer Tools

Project Description
Stars SQLAlchemy Visualizer Turns SQLAlchemy ORM models into interactive SVG diagrams.
Stars Automatic Log Collector Open-source Splunk alternative for multi-server log aggregation and analysis.
Stars Coding Agent Tips Scripts, configuration, and notes from daily AI coding-agent work.
Stars Coding Agent Account Manager Sub-100ms auth switching across Claude Max, GPT Pro, and Gemini subscriptions.
Stars Flywheel Connectors 176 connectors (~2.5M lines Rust, 72K+ tests). WASI sandboxing, cryptographic capability tokens, zone-based encryption.
Stars Pi Agent Rust AI coding agent CLI in Rust. Sub-100ms startup, 8 built-in tools, session branching, ~15MB binary.
Stars MCP Agent Mail Rust Ground-up Rust rewrite of Agent Mail. 12-crate workspace, 37 MCP tools, optional FrankenSearch hybrid search.
Stars Cross Agent Session Resumer Resumes sessions across Claude Code, Codex, and Gemini while preserving context.
Stars Cloud Benchmarker Automated cloud instance benchmarking with charts and historical tracking.
Stars Coding Agent Usage Tracker One command to read remaining quota across 16 AI providers, via PTY, cookies, OAuth, and local logs.
Stars Eidetic Engine Local-first coding-agent memory with durable storage and explainable retrieval.
Stars AADC Realigns broken right borders in ASCII diagrams by adding padding without deleting characters.
Stars Beads Viewer Rust Graph-theoretic issue triage: PageRank, betweenness, critical path, and slack over your dependency graph.
Stars Flywheel Gateway SDK-first agent orchestration server: account rotation, destructive-command guard, WebSocket fleet dashboard.
Stars Source to Prompt TUI Terminal file picker that builds XML-tagged LLM prompts with live token counts and cost estimates.
Stars Storage Ballast Helper Manages per-volume ballast pools using EWMA/PID disk-pressure forecasts and a zero-write emergency mode.
Stars Doodlestein Self-Releaser Builds signed releases with SBOMs from an existing Actions workflow when GitHub's queue stalls.
Stars Agent Settings Backup Versioned, encrypted backup and restore of coding-agent config folders, with scheduling, hooks, and JSON output.
Stars Vibe Cockpit Polls a dozen agent tools across SSH hosts into DuckDB and exposes TUI, web, MCP, and CLI interfaces.
Stars Franken Agent Detection Detects installed coding-agent connectors with deterministic filesystem probes and emits one normalized report.
Stars Rust Proxy Routes selected LLM and cloud API domains through an upstream proxy via iptables and ipset without changing the system-wide proxy.
Stars ATP RaptorQ file transfer over UDP/QUIC that converts packet loss into additional repair packets.

Education & Visualization

Project Description
Stars Visual A* Pathfinding Animated visualizations of pathfinding algorithms.
Stars Introduction to Temporal Logic How temporal logic can be used to analyze concurrency.
Stars Hoeffding's D Explainer Explains a nonparametric dependence measure for nonlinear relationships missed by Pearson and Spearman correlation.
Stars Lamport's Bakery Algorithm Visual Pythonic implementation of fair mutual exclusion without atomic hardware.
Stars CMA-ES Explainer Interactive explanation of derivative-free optimization on nonconvex objective functions.
Stars Kissinger Thesis Reader A reader for Henry Kissinger's 400-page undergraduate thesis on the meaning of history.

More Projects

Project Description
Stars Next.js GitHub Blog Blogging platform that uses GitHub as a headless CMS.
Stars JeffreysPrompts.com Prompt library for coding-agent workflows.
Stars LLM Docs Documentation formatted for use in LLM context windows.
Grassmann Article How Hermann Grassmann developed the exterior product decades before mathematicians recognized its value.
Stars LLM Tournament Multi-round coding competition in which language models critique and revise each other's solutions.
Stars Clawdbot Skills Skills that teach coding agents to use the Flywheel tools.
Stars Automated Plan Reviser Uses long-context reasoning models to revise implementation plans iteratively.
Stars The Lighthill Debate on AI Transcript of the 1973 debate over the state and direction of British AI research.
Stars YouTube Transcript Cleaner Turns raw YouTube auto-captions into readable text.
Stars Remote Compilation Helper Offloads builds from AI coding agents through Claude Code hooks.
Stars System Resource Protection Monitors system load and restrains development processes before they freeze a Linux desktop.
Stars Post Compact Reminder Claude Code hook that rereads AGENTS.md after context compaction.
Stars RANO Monitors network traffic from AI CLI processes with provider attribution and SQLite logging.
Stars Process Triage Detects zombie processes with a Bayesian model and uses staged SIGTERM/SIGKILL plus protected-process lists.
Stars Anti-Alzheimer's Flasher Browser tool for 40 Hz visual stimulation.
Stars Chat to File Converts ChatGPT, Gemini, and Grok share links to clean Markdown.
Stars PrepareProjectForLLMPrompt Flattens a codebase into a single model-ready prompt.

The Nvidia Short Thesis

In January 2025, I published a 12,000-word analysis arguing that DeepSeek and the economics of AI inference would pressure Nvidia's valuation. Within days, Nvidia lost roughly $600 billion in market capitalization.

Naval Ravikant "Come for the trade, stay for the dazzling 60-minute education on the state of AI."
Matt Levine "A candidate for the most impactful short research report ever written."
Simon Willison "Long, excellent... Jeffrey has a rare combination of experience in both computer science and investment analysis."

Writing

Selected essays from jeffreyemanuel.com/writing:


GitHub Activity

GitHub Contribution Graph

Star history for 14 repositories selected by total stars and recent growth


Products

Site What it is
jeffreyemanuel.com Personal site built with Next.js 16, React Three Fiber, and GSAP. Portfolio for 200 open-source projects.
Jeffreys-Skills.md Paid SaaS for managing, discovering, and deploying Claude Code skills.
JeffreysPrompts.com Free prompt library with a paid collection for multi-step coding and research workflows.
Agent-Flywheel.com Flywheel documentation, setup guides, and the Flywheel Hub Discord (~958 members).
MCPAgentMail.com Documentation and demos for MCP Agent Mail.
FrankenTUI.com Browser demos and documentation for FrankenTUI.
FrankenSQLite.com Interactive explanation and documentation for FrankenSQLite.
Asupersync.com Documentation and WASM demos for Asupersync.
Franken-Markdown.com Browser-based WASM playground for Markdown-to-HTML and tagged-PDF conversion.
FrankenSim.org Twenty FrankenSim Rust kernels compiled to WebAssembly and running live.
FrankenMermaid.com Mermaid-compatible diagrams rendered in the browser by Rust and WebAssembly.
SmearedLife.com WebGL2 laboratory for continuous cellular automata.
JazzChords.org Offline-first studio for composing, auditioning, and sharing jazz chord progressions.
BrennerBot.org Multi-agent research orchestration based on Sydney Brenner's methods.
Franken-OCR.com A 3B-parameter OCR model running in a browser tab.
Franken-Whisper.com Client-side Whisper transcription and speaker diarization.
FrankenTTS.com Zero-shot voice cloning with a pure-Rust CPU engine.
Classic-Patents.com Landmark patents with verified transcripts, plain-English engineering notes, and interactive simulations.
ASImposium.org Public ledger where sponsored AI agents propose, review, and challenge work in mathematics and physics.

Philosophy

Important

Software development now bottlenecks on coordination. The Flywheel lets a dozen frontier-model agents work in one repository with shared messaging, task graphs, file leases, and command safety. Work that once took months can ship in days, and each new tool improves the rest of the workflow.


Recognition

  • Naval Ravikant called the Nvidia short thesis a "dazzling 60-minute education on the state of AI"
  • Matt Levine (Bloomberg) called it "a candidate for the most impactful short research report ever written"
  • Simon Willison (creator of Datasette) praised the "rare combination of experience in both computer science and investment analysis"
  • Steve Yegge called me "a top-tier engineer, mathematician, AI researcher, and hedge-fund financier, equally rarified-air at all of them" and featured my tools in two Medium posts
  • Ryan Sean Adams (Bankless) called the analysis "one of the most thorough analyses of a company I've ever seen"
  • Front page of Hacker News (multiple times)
  • Featured on Slashdot, the Bankless podcast, Delphi Digital, and Farzad Podcast
  • 31,630+ GitHub stars, 3,300+ GitHub followers, 200 open-source projects, 48.7K X followers

Connect

X GitHub LinkedIn Website Email


Background

  • Spent a decade as a long/short equity analyst at hedge funds in New York
  • Building with deep learning since 2010, multi-agent systems since 2023
  • Consult to PE firms and hedge funds on AI automation strategy
  • Started building the Flywheel in October 2025

Pinned Loading

  1. destructive_command_guard destructive_command_guard Public

    The Destructive Command Guard (dcg) is for blocking dangerous git and shell commands from being executed by agents.

    Rust 5.9k 242

  2. mcp_agent_mail mcp_agent_mail Public

    Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite

    Python 2.1k 227

  3. beads_viewer beads_viewer Public

    Graph-aware TUI for the Beads issue tracker: PageRank, critical path, kanban, dependency DAG visualization, and robot-mode JSON API

    Go 1.7k 143

  4. pi_agent_rust pi_agent_rust Public

    High-performance AI coding agent CLI written in Rust with zero unsafe code

    Rust 1.7k 204

  5. agentic_coding_flywheel_setup agentic_coding_flywheel_setup Public

    Bootstraps a fresh Ubuntu VPS into a complete multi-agent AI development environment in 30 minutes: coding agents, session management, safety tools, and coordination infrastructure

    Shell 1.6k 184

  6. coding_agent_session_search coding_agent_session_search Public

    Unified TUI and CLI to index and search your local coding agent session history across 11+ providers (Codex, Claude, Gemini, Cursor, Aider, etc.)

    Rust 1.1k 137