Loading video...

Video Failed to Load

Go Home

I built the graph engineering pipeline instead of just reading about it. had to share what i found THE ENTIRE GRAPH ENGINEERING PIPELINE—ROOTED IN REAL, OPEN-SOURCE BUILDING, NOT SLIDES. Representation. Ontologies. Entity extraction. Relationships. Events. QA gate. Fusion. Embeddings. Actual memory your agent can navigate instead of hand-waving. And...

12,800 views • 3 days ago •via X (Twitter)

9 Comments

mufettis 🐋's profile picture
mufettis 🐋3 days ago

the open source angle makes this even better

Yaki's profile picture
Yaki3 days ago

the QA gate is where graph memory earns trust imo

Yanyan L's profile picture
Yanyan L3 days ago

everyone's posting the graph diagram, nobody's posting the QA gate that catches the garbage entities 💙 the gate is the whole thing

Macro Bombastic's profile picture
Macro Bombastic3 days ago

yeah the pipeline is one thing, the qa gate is what actually saves you tbh

Oladosu Enitan's profile picture
Oladosu Enitan3 days ago

I spend more effort giving each trade idea a review deadline and less effort predicting every candle.

magsimich's profile picture
magsimich3 days ago

building the whole pipeline is way better than just reading about it

Colbert's profile picture
Colbert3 days ago

Building is always the best way to learn. There is too much theory out there and not enough people actually shipping the pipeline.

Sami's profile picture
Sami3 days ago

include one deliberately ambiguous entity in the demo and show whether the QA gate rejects it or merges it

Lea Thompson's profile picture
Lea Thompson3 days ago

barely readable text wall. the font on this is a crime

Related Videos

THIS MIGHT BE THE #1 OPEN-SOURCE REPO FOR CLAUDE CODE RIGHT NOW. IT GIVES CLAUDE A MEMORY AND SLASHES YOUR TOKEN COST ON EVERY QUESTION The repo is safishamsi/graphify, a free open-source skill that turns any codebase into a knowledge graph Claude Code can read instantly. Instead of grepping through your files every session, Claude gets a map of how everything connects The problem it fixes: Every time you ask Claude Code about a big repo, it does the same thing, greps through dozens of files like a brute-force Ctrl+F, blows through your context window, and sometimes still misses the answer hiding in a file nobody searched. Claude Code has no memory of how your project is structured. Every session starts from zero What it does: It maps your entire codebase into a knowledge graph, capturing not just which files exist, but which functions depend on which, which modules are central, and which files cluster around the same concern. Claude queries the map instead of scanning files How it works, three passes: 1. Code structure, free and local. Tree-sitter parses your files and pulls out classes, functions, imports and call graphs. No LLM, no tokens, just your actual code mapped deterministically 2. Audio and video, if you have them. Transcribed locally and folded into the graph 3. Docs, papers, images. Here an LLM does semantic analysis, figuring out what each document means and where it fits. Only the meaning gets sent up, never your raw source It saves you money: Normally a question about a big repo makes Claude spawn explore agents that scan file after file, eating your context window and your token budget before you get an answer. With the graph already built, Claude queries the map instead of re-reading the codebase every time. Same answer, a fraction of the tokens. The graph only gets built once, then a hook rebuilds it after each commit for free, so you never pay that scanning cost again. The bigger the repo, the bigger the gap The best parts: it's a skill, so once installed Claude knows when to use it without you memorizing commands. It works on non-code folders too, point it at docs or notes and it can spin up an Obsidian vault How to add it to your Claude: 1. Install Claude Code if you haven't: npm install -g Paul Jankura-ai/claude-code 2. Add the skill: claude skill add safishamsi/graphify 3. Open your project folder and run /graphify . to build the graph 4. Optional, make it automatic: graphify hook install so the graph rebuilds after every commit That's it. Ask Claude about your repo and it reads the map instead of burning tokens on a file hunt Bookmark this

Yarchi

56,177 views • 3 months ago

there's now a formal proof that your agent's vector memory forgets what you stored and fabricates things you never did. scaling it up makes both worse, not better. "the price of meaning" (arxiv 2603.27116) proves it for any memory that retrieves by similarity in an embedding space. the same geometry that lets embeddings generalize creates competitor mass in every neighborhood. add data and the crowding grows: retention decays toward zero, and false recall can't be tuned out without throwing away true hits. not a bug in your pipeline. the shape of the math. i learned this the expensive way. 500 stored facts, two weeks into a build, a user asks what i know about their job. retrieval hands back four fragments from different weeks: "i love my job," "thinking of quitting," "my manager is supportive," "my manager micromanages." the agent invents a clean synthesis of all four. the user had switched jobs in between. embeddings measure similarity, not truth. the topology angle says stop storing meaning as geometry, store it as structure. navigate an edge in an AST or a graph instead of searching a neighborhood. no crowding, no decay, no false recall. FORGE backs it: plain AST checks catch structural hallucinations at 100% precision (arxiv 2601.19106). here's what the structural pitch skips. the same proof shows pure structure escapes the geometry only by surrendering the connections embeddings find. you trade fabrication for blindness. so i stopped picking a side. what actually ships across thousands of sessions: – extract facts, not transcripts – resolve conflicts on write: archive the old job, mark the new one active – hybrid retrieval: vectors for discovery, graph for precision – decay plus nightly consolidation, so memory keeps what matters and lets the rest go memory is infrastructure, not a feature. that reframe is the whole game. and it's being measured now. WorldMemArena (may 28, arxiv 2605.29341) scores these paradigms head to head, embedding memory against retrieval-augmented against terminal-agent harnesses, across multimodal action-world tasks. the question moved from "does it remember" to "what kind of memory survives scale." full architecture, with the code, here:

Rohit

16,591 views • 3 months ago