🔱 DeepFork

Don't fork the code. Fork the design.

License: MIT Agent Skill Claude Code Powered by graphify Clean Room PRs Welcome

DeepFork is an agent skill that reverse-engineers any open-source repository into 🧠 the cleanest possible explanation of how it actually works, and 📐 a behavioral blueprint you can rebuild from — with your changes, in your stack, clean-room.


🛑 Stop reading 60k lines to understand a tool. 🍴 Stop forking when what you wanted was your own version.

you:    /deepfork https://github.com/karpathy/micrograd — but in TypeScript, with a graph visualizer

agent:  ⚖️  license gate ........ MIT ✓
        🕸️  knowledge graph ..... 55 nodes · 86 edges · god nodes: Value, Neuron, Layer, MLP
        🧠  UNDERSTANDING.md .... the repo, explained clean — load-bearing pieces, data flow, the core trick
        📐  BLUEPRINT.md ........ a spec you could build from without ever seeing the source
        🔨  rebuild/ ............ your TypeScript version, clean-room, tests first

⚡ Install

Works with Claude Code (and any agent that reads skills):

npx skills add GerardoRdz96/deepfork

🕸️ Optional but recommended — the graph engine that makes the understanding pass exceptional (graphify, 65k★):

uv tool install graphifyy   # double-y! code analysis is local & free (tree-sitter)

Without graphify, DeepFork falls back to manual repo mapping. With it: god-node detection, auto-named subsystems, surprising-connection analysis, and token-cheap graph queries.

🎁 What you get

Artifact What it is
🧠 UNDERSTANDING.md The repo explained the way you wish its docs did: the 3-7 load-bearing pieces, each subsystem, one request traced end-to-end, the non-obvious couplings. Every claim labeled [VERIFIED] or [INFERRED].
📐 BLUEPRINT.md A behavioral spec — mechanisms, contracts, build order, test strategy — plus your customization deltas. Someone who never saw the original could build from it. That someone is your agent.
🔨 rebuild/ Your version. Clean-room: built from the blueprint with the original source closed. Ships with ATTRIBUTION.md.

🗺️ How it works

flowchart LR
    A["⚖️ Phase 0<br>License gate"] --> B["📥 Phase 1<br>Acquire"]
    B --> C["🕸️ Phase 2<br>Comprehend<br><i>graph · god nodes · subsystems</i>"]
    C --> D["🔎 Phase 3<br>Interrogate<br><i>verify the load-bearing claims</i>"]
    D --> E["📐 Phase 4<br>Blueprint<br><i>+ YOUR deltas</i>"]
    E -.->|"only behavior crosses<br>🧱 the clean-room wall"| F["🔨 Phase 5<br>Rebuild<br><i>original closed · tests first</i>"]
  1. ⚖️ License gate — SPDX check before anything else; unlicensed code never gets a rebuild.
  2. 🕸️ Comprehend — graphify builds a knowledge graph (locally, free for code); the skill turns god nodes + communities + surprising connections into UNDERSTANDING.md.
  3. 🔎 Interrogate — the agent answers what a rebuilder must know (the core trick, the contracts, what breaks at 10×), verifying inferred claims against real code.
  4. 📐 Blueprint — asks what YOU want different, then writes the spec with your deltas designed in.
  5. 🔨 Rebuild — fresh repo, original closed, blueprint only, tests first.

📚 Worked example

examples/micrograd/ — karpathy's micrograd (12k★) deepforked end-to-end:

  • 🧠 UNDERSTANDING.md — the autograd engine explained in 6 sections, from a real 55-node graph run ($0)
  • 📐 BLUEPRINT.md — "gradflow": the TypeScript + built-in-visualizer rebuild spec

🛡️ Why clean-room?

DeepFork is built to keep you on the right side of open source:

  • ⚖️ Phase 0 license gate — checks the target's license first; refuses rebuilds of unlicensed code.
  • 🧱 The blueprint wall — only behavioral descriptions cross from the original to your rebuild. Never code. Your implementation is original work.
  • 🔓 Copyleft awareness — GPL/AGPL targets come with a warning and a recommendation that your rebuild stay open.
  • 🙏 Attribution by default — every rebuild credits the original design.

This is how engineers have legally reimplemented systems for decades (Compaq vs IBM BIOS, 1982). DeepFork just makes the discipline automatic.

❓ FAQ


If DeepFork saved you a weekend of code-reading, star the repo — it helps others find it.

MIT · Built by 🐧 The Penguin Alley · Powered by graphify