maybe worth building
the blog
← the blog
September 2026 · Verdicts

Is an LLM wiki worth building on instead of RAG in 2026?

Short answer: the pattern is right, the specific repo isn't. nashsu/llm_wiki added 640 stars in a day chasing an idea Andrej Karpathy posted publicly five months ago, and at least seven other builders shipped the same fix within ten weeks of him posting it.

The verdict

Adopt the pattern, skip the repo as your foundation. nashsu/llm_wiki turns your documents into a persistent, interlinked wiki instead of re-answering from scratch every query, and it added 640 stars in a single day of GitHub Trending on September 11, 2026, on top of 18,713 total. The mechanism is real: Andrej Karpathy named RAG's exact failure in an April 4, 2026 gist, and Mem0 raised $24 million to build a commercial version of "memory instead of retrieval" months before that gist existed. But nashsu/llm_wiki itself is one of at least eight near-identical implementations that appeared within ten weeks of Karpathy's post, it's GPLv3-licensed, and one person maintains it. Build the pattern into your own stack. Don't bet your product's foundation on this specific fork of a publicly given-away idea.

What does nashsu/llm_wiki actually do differently from RAG?

Standard retrieval-augmented generation fetches relevant document chunks at query time, generates an answer, and discards the work. nashsu/llm_wiki instead reads your sources once, extracts what matters, and writes it into a persistent, cross-linked set of wiki pages that gets updated and reorganized as new sources come in. The project's own README states the distinction directly: "Instead of traditional RAG (retrieve-and-answer from scratch every time), the LLM incrementally builds and maintains a persistent wiki from your sources." As of September 11, 2026, the repository sits at 18,713 GitHub stars, having added 640 in a single day of GitHub Trending, a fast climb for a project created just five months earlier, on April 8, 2026.

Where did this idea actually come from?

Andrej Karpathy posted the whole idea for free, four days before nashsu's repository even existed. His gist, "LLM Wiki – example of an 'idea file,'" went up on April 4, 2026, and it hit 296 points and 35 comments on Hacker News the same day. His framing named the exact mechanism this whole category chases: "the LLM is rediscovering knowledge from scratch on every question. There's no accumulation." He proposed the fix in the same breath: "the LLM incrementally builds and maintains a persistent wiki, a structured, interlinked collection of markdown files." nashsu/llm_wiki's repository was created four days later, on April 8, 2026. The idea is Karpathy's, given away for free, on purpose.

How many other builders shipped the same idea?

At least eight other builders shipped a working version within about ten weeks of that gist going up. Show HN launches building on the identical Karpathy gist include wuphf (April 25, 2026, 260 points), llmwiki.app (April 6), llm-wiki-compiler (April 6), mcptube (April 13, applying it to YouTube transcripts), a GTM-focused fork for founders (April 9), vault-operator for Obsidian (June 1), llm-wiki.net (June 18), and Memento, a version for email (June 16). nashsu/llm_wiki is the current star-count leader of that cluster, but it's leading a field of clones of one public idea-file, not a field it invented. Distribution and polish, not a defensible technical moat, is what separates the leader from the seven runners-up.

Is there real money already backing this thesis?

Yes, and it predates the Karpathy gist. Mem0 raised a $24 million Series A in October 2025, led by Basis Set Ventures with Peak XV Partners, Kindred Ventures, GitHub Fund, and Y Combinator participating, to build exactly this category commercially: a persistent memory layer for AI agents instead of query-time retrieval. Mem0's own GitHub stars went from 41,000 at the time of that raise to 65,139 as of today. That's the confirmation that "accumulation beats re-fetching" isn't a fringe take. It's a funded, growing thesis that a real company built a product around before most people had heard the word "wiki" applied to it.

What's the catch with building specifically on nashsu/llm_wiki?

The license and the maintainer are both easy to miss if you only look at the star count. Reading the repository's own LICENSE file directly confirms it ships under GPLv3, not the permissive MIT or Apache terms most trending GitHub tools use. GPLv3 is copyleft: if you build a commercial product on this code and distribute it, you're obligated to release your derivative's source under the same license. That single fact changes the calculus for any team assuming a trending repo is free to fold into a closed product. On top of the license, the project has one named maintainer, Yong Su, no company, no funding round, and five months of history. A solo maintainer's fork of somebody else's public gist is not the foundation layer of a product you intend to run in production for years.

When is this pattern worth building into your own stack?

  • Your workload is repeat-query-heavy on a fixed body of documents. Accumulation pays off when the same knowledge gets asked about repeatedly, not on one-off lookups.
  • You have a specific vertical where the interlinking itself is the value. Mem0 won by targeting agent memory specifically, not by shipping a generic Karpathy clone.
  • You're prototyping internally and don't need to distribute a derivative product, where GPLv3's obligations don't bite yet.

When should you stick with RAG, or build the memory layer yourself?

  • You need permissive licensing for a closed commercial product. GPLv3 rules out embedding nashsu/llm_wiki's code directly.
  • Your queries are genuinely one-shot against a large, changing corpus, where nothing compounds and RAG's simplicity wins.
  • You want a funded, supported foundation. Mem0, Zep's Graphiti, and Letta are all further along on production hardening than a five-month-old solo project.

What's the test to run before you build on any of this?

Separate the idea from the implementation, the same way you'd separate any commodity insight from the vendor selling it. Karpathy gave the mechanism away in public in April 2026; at least eight teams built it within ten weeks; one is currently winning on GitHub stars. None of that changes whether accumulation-over-retrieval is the right architecture for your specific workload, which is the only question that actually matters. If the answer is yes, prototype the pattern against your own documents before you pick a license or a maintainer to depend on. The wiki idea is worth having. The specific fork with the most stars today is not automatically the one worth building your company on.

Karpathy posted the mechanism for free. Mem0 raised $24 million to build a version of it before most people noticed. nashsu/llm_wiki is winning this week's popularity contest among at least eight clones of the same public idea. Build the pattern. Pick your foundation on licensing and who's still maintaining it in a year, not on which repo is trending today.

Related: Is it worth building an AI agent in 2026?, Is it worth building on open-source AI models in 2026?, and Is an agent skills registry worth building in 2026? All three ask the same underlying question: what happens to your product when the free, trending thing it's built on turns out to be one of many.

Frequently asked questions

Is nashsu/llm_wiki worth building on instead of a standard RAG pipeline?

Adopt the pattern, not the repo. The idea, accumulating a persistent wiki instead of re-deriving answers every query, is real and funded elsewhere. nashsu/llm_wiki is one of at least eight near-simultaneous implementations of the same public idea, GPLv3-licensed, and maintained by one person.

What's actually wrong with standard RAG that this fixes?

RAG retrieves and answers, then discards the work. Andrej Karpathy named it directly on April 4, 2026: "the LLM is rediscovering knowledge from scratch on every question. There's no accumulation." An LLM wiki fixes that by keeping a persistent, cross-referenced record.

Where did the LLM wiki idea come from?

A single Andrej Karpathy gist posted April 4, 2026, which hit 296 points on Hacker News the same day. nashsu/llm_wiki's repository was created four days later.

Is nashsu/llm_wiki actually the leading implementation?

By stars, yes: 18,713 as of September 11, 2026, with 640 added that day alone. But at least seven other Show HN implementations of the identical idea shipped within about ten weeks of the original gist.

Is there real money already backing memory-over-RAG?

Yes. Mem0 raised a $24 million Series A in October 2025 to build a persistent memory layer for AI agents, and its GitHub stars grew from 41,000 at the raise to 65,139 today.

What's the catch with building on nashsu/llm_wiki specifically?

It's GPLv3-licensed, confirmed directly from the repository's LICENSE file, which obligates you to open-source a distributed derivative. It's also five months old and maintained by one named individual with no company behind it.

So should I build my own version instead?

Only for a specific vertical or workflow the generic pattern doesn't already serve. A ninth generic clone of a publicly posted idea has no moat; the moat was never the code.

Want 100 ideas that pass this test?

The free pack: 100 AI ideas actually worth building, each with the receipts and a clear verdict. No fake MRR screenshots.

You're on the list. The 100 ideas are on the way.