AI Digest.

Karpathy's LLM Knowledge Base Vision Sparks Movement as Gemma 4 Drops and Claude Code Debate Heats Up

Andrej Karpathy's detailed post on using LLMs to build personal knowledge bases became the day's center of gravity, spawning tools and responses from multiple builders. Google launched Gemma 4 with Apache 2.0 licensing to immediate community adoption, while Claude Code dominated the conversation around coding agent workflows, rate limits, and best practices.

Daily Wrap-Up

Today felt like a rare convergence day where several threads in the AI space suddenly knotted together. Andrej Karpathy posted a detailed breakdown of how he uses LLMs to build and maintain personal knowledge bases in Obsidian, and within hours, multiple builders were either validating the approach, shipping tools around it, or extending it with their own research automation stacks. This wasn't just one person's workflow going viral. It exposed a genuine shift in how power users are spending their tokens: less on code generation, more on knowledge compilation and retrieval. The fact that Hermes Agent simultaneously announced seven pluggable memory systems suggests this isn't a niche concern anymore.

Meanwhile, Google dropped Gemma 4 under Apache 2.0, and the open-source community responded with breathtaking speed. Day-zero llama.cpp support, MLX quantizations, fine-tunes on Claude Opus 4.6 thinking traces, and someone already building a full coding agent stack with Gemma 4 as the backbone. The model release cycle has compressed to the point where community tooling ships the same day as the weights. On the Claude Code side, the discourse was less about new features and more about hard-won wisdom: how to navigate large codebases efficiently, why plan mode might be a trap, how to hunt down placeholder code left by agents, and the ever-present rate limit frustrations.

The most practical takeaway for developers: if you're spending all your AI tokens on code generation, consider Karpathy's knowledge-base pattern. Index your domain research into markdown, let an LLM maintain the wiki, and query it as a living reference. The approach works at surprisingly small scale without RAG infrastructure, and multiple tools shipped today to make it turnkey.

Quick Hits

  • @OpenAIDevs rolled out usage-based pricing for Codex on ChatGPT Business and Enterprise plans, removing fixed seat costs as a barrier to team adoption.
  • @coreyganim pitched a $999 AI audit business model: interview a client, feed the transcript to Claude, generate tool recommendations, upsell from there. Hustle-coded consulting for the AI era.
  • @coffeecup2020 highlighted Turbo Quant's Qwopus3.5-v3-27B achieving a median perplexity of 6.1953, pushing quantization quality benchmarks further.
  • @ChujieZheng announced plans to open-source Qwen3.6 medium-sized models and asked the community to vote on preferred model sizes.
  • @salesforce unveiled the new Slack with native AI integrations including Agentforce and Anthropic partnerships.
  • @larsencc shipped a clean CLI tool called "ports" that answers the eternal developer question of what's running on port 3000, with watch and cleanup commands.
  • @elonmusk said the next Starship flight and first V3 ship and booster combo is 4 to 6 weeks out.
  • @AskFocal promoted their platform for summarizing and querying podcasts, SEC filings, and blog posts.
  • @EntireHQ launched automatic session capture for both OpenAI Codex and Claude Code, letting developers rewind and share agent activity by repo.

Claude Code: Workflows, Frustrations, and Hard-Won Wisdom

Claude Code dominated today's conversation not through any single announcement but through a constellation of practitioner insights that paint a picture of a tool ecosystem maturing in real time. The central tension is clear: coding agents are powerful but demanding, and the community is still figuring out the right interaction patterns.

@steipete amplified a sentiment that resonated widely: "Using coding agents well is taking every inch of my 25 years of experience as a software engineer, and it is mentally exhausting." This isn't beginner frustration. It's experienced engineers discovering that delegation to AI requires its own skillset. @mattpocockuk built on this by abandoning plan mode entirely, arguing it "creates a plan FAR too eagerly and usually asks you zero questions en route. The whole point of planning is to get on the same wavelength with the LLM, not to generate an asset you don't read."

On the tooling side, @NieceOfAnton shared results from testing repowise, an open-source indexer that builds dependency graphs, git history analysis, and auto-generated docs for Claude Code to consume. The claimed result: a 3,000-file codebase task completed in 2 minutes instead of 8, with 60% fewer tokens. The key insight is that repowise "stops Claude from reading files it has no reason to read," which is essentially the context window management problem that defines effective agent use.

@doodlestein contributed an extensive prompt workflow for finding placeholder and mock code that accumulates across long agent-driven development sessions. It's a detailed, practical approach that highlights an underappreciated problem: agents leave artifacts, and cleaning those up is itself an agent-worthy task. @theo raised the rate limit issue that many heavy users are hitting, while @EXM7777 noted that Claude Code's multi-agent orchestration layer has been extracted, made model-agnostic, and open-sourced. The ecosystem is being unbundled even as it's being built.

Gemma 4 Lands with Immediate Community Adoption

Google's release of Gemma 4 under Apache 2.0 was the day's biggest model drop, and the speed of community response was the real story. Four sizes (31B dense, 26B MoE, 4B, and 2B), all commercially permissive, and the open-source toolchain mobilized instantly.

@ggerganov credited his collaborator Son (ngxson) with leading the llama.cpp integration, noting the "day-0 support is possible thanks to his hard work" in close collaboration with the Google DeepMind team. @neural_avb pointed to someone who had already uploaded 125 MLX-quantized models within hours of release, adding that developers who aren't building on this for Mac are missing an opportunity. The post also carried a broader critique: "people don't understand what edge models are for" and "people don't understand there is AI outside LLMs."

The creative applications started immediately. @kaiostephens fine-tuned Gemma-4-31b on Claude Opus 4.6 thinking traces "to improve the overall quality and personality of the model," an approach that essentially distills one model's reasoning style into another's weights. @iotcoi went further, assembling a full coding agent stack with Gemma-4 31B as the primary model and Gemma-4 2B handling speculative decoding, running through Claude Code's harness with a DSPy-GEPA router. The thesis: you can build a better coding agent at home than with Google's own hosted Gemini and its default tools. Whether that holds up at scale remains to be seen, but the architectural ambition is notable.

Karpathy's Knowledge Base Manifesto and the Tools Racing to Implement It

The day's most intellectually rich thread started with Andrej Karpathy describing his workflow for using LLMs to build and maintain personal knowledge bases. The core idea: collect raw data from various sources, use an LLM to "compile" it into a structured markdown wiki, then query and enhance that wiki through agent interactions, all viewable in Obsidian. No fancy RAG needed at moderate scale. As Karpathy put it, the LLM handles "auto-maintaining index files and brief summaries" well enough that retrieval works naturally at around 100 articles and 400K words.

@kevinnguyendn responded with ByteRover, claiming "Karpathy just validated the exact architecture we open-sourced today." ByteRover aims to give you "the human-readable files of Obsidian, but the backend automatically creates nodes, links, and context graphs for agents to use natively." The pitch is automating the compilation step that Karpathy describes doing semi-manually.

@omarsar0 (elvis) offered the most differentiated take, describing a system where he's automated daily research paper curation using a fine-tuned skill that surfaces high-signal papers. The papers get indexed using markdown with rich metadata, fed into an interactive artifact generator, and visualized through an agent orchestrator. His key insight lands on the search problem: "The automations, autoresearch, ralph research loop are easier to build but are only as good as what you feed them." The implication is that knowledge base quality is the bottleneck, not agent capability.

AI Agent Memory Goes Pluggable

The memory and persistence layer for AI agents is becoming a competitive frontier. @sudoingX highlighted that Hermes Agent now supports seven different memory systems, from local SQLite to knowledge graphs to vector search, all pluggable via a standardized interface. "Self-hosted or cloud. Local sqlite or knowledge graphs. Vector search or filesystem hierarchy. Pick what fits your workflow and plug it in."

@steveruizok amplified a related point about Hermes: that agents accumulate meaningful artifacts across sessions, including research, skills, decisions, and logs. After a few weeks, you have hundreds of documents that represent genuine learned context. Combined with @jack praising Goose as a "superpower" whose capabilities have quietly improved under the hood, the pattern is clear: the agentic tool landscape is fragmenting into specialized, interchangeable components rather than converging on monolithic platforms. The winner may be whichever system makes memory and tool integration feel seamless rather than whichever model runs underneath.

Open Source Tools and the Modular Agent Stack

Several releases today reinforced the trend toward modular, self-hosted agent tooling. @0xSero announced Factory Droid is now free for all, letting users bring their own API keys and route through local proxies or self-hosted endpoints with support for Anthropic, Responses, and other API formats. @RayFernando1337 showcased oh-my-codex (omx) being used with tmux and deep-interview workflows, suggesting the CLI-native agent experience is finding its audience among power users who want terminal-first control.

The common thread across these tools is optionality. Nobody is betting on a single model provider or a single interface. The stack is: pick your model, pick your harness, pick your memory system, pick your IDE integration. The developers building in this space are treating every layer as swappable, which mirrors how the broader infrastructure world learned to think about cloud services a decade ago. The question is whether this modularity survives contact with the need for tight, reliable integration at production scale.

Sources

F
Focal @AskFocal ·
Did you know that Focal can not only summarize entire podcasts, SEC filings, blog posts, and more—but also answer your specific, in-depth questions about them? Try it free today. No credit card required Access a growing library of curated content all in one powerful platform.
S
Salesforce @salesforce ·
Meet the new @SlackHQ. Where AI works. → Slackbot → Slack Marketplace → Slack CRM → Slack + Salesforce → Slack + Agentforce With @Benioff, @MrBeast, @AnthropicAI, and @GoWithEngine. https://t.co/p8NF5cH0FS
S
Srishti @NieceOfAnton ·
Watched Claude Code finish a 3,000 file codebase task in 2 minutes instead of 8. Same prompt. 60% fewer tokens. One tool changed. Found an open source tool that actually changes how Claude Code navigates large codebases. repowise indexes your repo into four layers: > dependency graph with PageRank scoring > git history with ownership and hotspot data > auto generated docs that rebuild on every commit > a decisions layer that captures why code exists. That last one is the part nobody else does. Tested it on a 3,000 file codebase with "add rate limiting to all API endpoints." Without it, Claude Code grepped 30 files over 8 minutes. Missed that auth.ts had 47 dependents. Had no idea payments/ was 71% owned by one engineer. Broke hidden coupling and shipped anyway. With repowise, 5 MCP calls. 2 minutes. Found every dependency, found existing retry logic worth reusing, flagged the right reviewer, confirmed no prior rate limiting decision existed. Same task, fraction of the tokens, better output. The token reduction is roughly 60% because it stops Claude from reading files it has no reason to read. It also generates your CLAUDE.md from actual repo data. Self hosted. Code stays on your machine. Works offline with Ollama. Star it. https://t.co/2GmVQxRgBG
M
Min Choi @minchoi ·
This is wild. Google just dropped Gemma 4. Apache 2.0, open weights, frontier models that run on phones, laptops, and desktops👇 https://t.co/R2qMb1NZ2h
D demishassabis @demishassabis

Excited to launch Gemma 4: the best open models in the world for their respective sizes. Available in 4 sizes that can be fine-tuned for your specific task: 31B dense for great raw performance, 26B MoE for low latency, and effective 2B & 4B for edge device use - happy building! https://t.co/Sjbe3ph8xr

E
Entire @EntireHQ ·
Whether you use @OpenAI Codex directly or in Claude Code, Entire captures all your sessions automatically. Rewind. Share. View your agent activity by repo. Available today. https://t.co/fWizTRNIwp
M
Mitko Vasilev @iotcoi ·
You can build a better coding agent at home with Gemma-4 than with Google Gemini & its default coding tools. - Claude Code, the new top open-source harness - DSPy-GEPA router - llama.cpp server - Gemma-4 31B as the heavy lifter - Gemma-4 2B as speculative decoding sidekick https://t.co/TAKOyb0VpP
D
David T @coffeecup2020 ·
Turbo Quant - Qwopus3.5-v3-27B-TQ3_4S. Impressive Median PPL 6.1953! Total destruction. https://t.co/xClEq9jA27
O
OpenAI Developers @OpenAIDevs ·
Bring Codex to your team without fixed seat costs. We’re rolling out usage-based pricing for Codex in ChatGPT Business and Enterprise plans, so teams have a more flexible way to get started. https://t.co/dyfuK5ouXS
M
Matt Pocock @mattpocockuk ·
I have also stopped using plan mode It creates a plan FAR too eagerly and usually asks you zero questions en route The whole point of planning is to get on the same wavelength with the LLM, not to generate an asset you don't read /grill-me all the way
S steipete @steipete

I never use plan mode. The main reason this was added to codex is for claude-pilled people who struggle with changing their habits. just talk with your agent.

E
elvis @omarsar0 ·
Building a personal knowledge base for my agents is increasingly where I spend my time these days. Like @karpathy, I also use Obsidian for my MD vaults. What's different in my approach is that I curate research papers on a daily basis and have actually tuned a Skill for months to find high-signal, relevant papers. I was reviewing and curating papers manually for some time, but now it's all automated as it has gotten so good at capturing what I consider the best of the best. There are so many papers these days, so this is a big deal. You all get to benefit from that with the papers I feature in my timeline and on @dair_ai. The papers are indexed using @tobi qmd cli tool (all of it in markdown files along with useful metadata). So good for semantic search and surfacing insights, unlike anything out there. I am a visual person, so I then started to experiment with how to leverage this personal knowledge base of research papers inside my new interactive artifact generator (mcp tools inside my agent orchestrator system). The result is what you see in the clip. 100s of papers with all sorts of insights visualized. I keep track of research papers daily, so believe me when I tell you that this system is absolutely insane at surfacing insights. This is the result of months of tinkering on how to index research and leverage agent automations for wikification and robust documentation. But this is just the beginning. The visual artifact (which is interactive too) can be changed dynamically as I please. I can prompt my agent to throw any data at it. I can add different views to the data. Different interactions. I feel like this is the most personalized research system I have ever built and used, and it's not even close. The knowledge that the agents are able to surface from this basic setup is already extremely useful as I experiment with new agentic engineering concepts. I feel like this knowledge layer and the higher-level ones I am working on will allow me to maximize other automation tools like autoresearch. The research is only as good as the research questions. And the research questions are only as good as the insights the agents have access to. Where I am spending time now is on how to make this more actionable. I am obsessed about the search problem here. The automations, autoresearch, ralph research loop (I built one months ago) are easier to build but are only as good as what you feed them. Work in progress. More updates soon. Back to building.
K karpathy @karpathy

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

M
Machina @EXM7777 ·
RT @EXM7777: the multi-agent orchestration layer from Claude Code's leaked source has been extracted, made model-agnostic, and open-sourced…
J
Jeffrey Emanuel @doodlestein ·
Agent Coding Life Hack: Have a big software development project that you've been working on for a long time using a bunch of agents over many sessions? Well, unless you've specifically looked for them, chances are that you've accumulated various forms of "mocks" or fake placeholder code somewhere in your project. Here's a prompt for systematically uncovering this junk and resolving it. Best used with Claude Code and Opus 4.6 on max reasoning in a fresh session (it also works well in Codex with GPT 5.4, but not quite as well in my experience): --- First read ALL of the AGENTS.md file and README.md file super carefully and understand ALL of both! Then use your code investigation agent mode to fully understand the code and technical architecture and purpose of the project. Then, I need you to search every last INCH of this ENTIRE repo, looking intelligently for ANY signs or indicators that functions, methods, classes, etc. are "stubs" or "mocks" or "placeholders" or "TODO" or otherwise rather than 100% real, working, fully-functioning code. You can apply a variety of methods for checking for this, but it's imperative that you not miss ANY instances of this sort of thing. One clever way might be to use ast-grep to find and measure the length of any functions/methods/classes/etc. in terms of lines, characters, etc. to look for things that look suspicious because they appear to be too short to do anything substantive. First compile the comprehensive listing of all such placeholders/mocks/stubs and a short explanation or justification for why you're convinced they qualify as incomplete/placeholders that must be completed. Once we have this table of suspects, we can then decide how to address and resolve them all in a totally comprehensive, optimal, clever way. --- Let it crank away on that until it responds, and then if it's a relatively short list of actionable items, you can follow up with this: --- OK good, now I need you to come up with an absolutely comprehensive, detailed, and granular plan for addressing each and every single one of those placeholders/mocks/stubs that you identified in the most optimal and clever and sophisticated way possible. THEN: please resolve ALL of those actionable items now. Keep a super detailed, granular, and complete TODO list of all items so you don't lose track of anything and remember to complete all the tasks and sub-tasks you identified or which you think of during the course of your work on these items! --- If it's a long list of stuff to do (say, more than 4 or 5 items), then you should use beads to track the stuff; in that case, try this follow up prompt: OK good, now I need you to come up with an absolutely comprehensive, detailed, and granular plan for addressing each and every single one of those placeholders/mocks/stubs that you identified in the most optimal and clever and sophisticated way possible. THEN: please take ALL of that and elaborate on it and use it to create a comprehensive and granular set of beads for all this with tasks, subtasks, and dependency structure overlaid, with detailed comments so that the whole thing is totally self-contained and self-documenting (including relevant background, reasoning/justification, considerations, etc.-- anything we'd want our "future self" to know about the goals and intentions and thought process and how it serves the over-arching goals of the project.) The beads should be so detailed that we never need to consult back to the original markdown plan document. Remember to ONLY use the `br` tool to create and modify the beads and add the dependencies. --- You can follow that up with a few rounds of this: Check over each bead super carefully-- are you sure it makes sense? Is it optimal? Could we change anything to make the system work better for users? If so, revise the beads. It's a lot easier and faster to operate in "plan space" before we start implementing these things! DO NOT OVERSIMPLIFY THINGS! DO NOT LOSE ANY FEATURES OR FUNCTIONALITY! Also make sure that as part of the beads we include comprehensive unit tests and e2e test scripts with great, detailed logging so we can be sure that everything is working perfectly after implementation. Make sure to ONLY use the `br` cli tool for all changes, and you can and should also use the `bv` tool to help diagnose potential problems with the beads. --- If you don't feel like doing all this stuff, I turned all of it into a new skill (with a few extra tricks layered into it) on my paid skills site, https://t.co/Un9brY2G3l, so you can just call the /mock-code-finder skill and it will do everything for you automatically, end-to-end. Give it a try!
C
Corey Ganim @coreyganim ·
me hyping you up to go sell your first AI audit for $999 because the model is stupid simple: 1. charge $999 for a 45-min interview where you ask "where does your time go?" 2. feed the transcript to Claude. it spits out 5-7 AI tool recommendations with hours saved per week 3. build a polished report in Gamma (30 min from a template, looks like a $10K consulting deliverable) 4. walk them through it on a review call 5. upsell additional services for $3-10k+ you don't need to be technical. you don't need to code. you don't even need to know the tools. you simply need to ask good questions (and Claude can create the question bank for you). the window is wide open. most business owners know they should be using AI but have no idea where to start. be the person who tells them. full guide below 👇
C coreyganim @coreyganim

how to print $$ selling AI audits to small businesses (full guide)

K
kaios @kaiostephens ·
I fine-tuned Gemma-4-31b on Claude Opus 4.6 thinking to improve the overall quality and personality of the model. Download it here: https://t.co/DFxrw2gDtO
G Google @Google

We just released Gemma 4 — our most intelligent open models to date. Built from the same world-class research as Gemini 3, Gemma 4 brings breakthrough intelligence directly to your own hardware for advanced reasoning and agentic workflows. Released under a commercially permissive Apache 2.0 license so anyone can build powerful AI tools. 🧵↓

J
jack @jack ·
people are sleeping on how excellent goose has become under the hood (interface needs some work but team is pushing). it's a superpower. https://t.co/Mss7abGodq
C
Chujie Zheng @ChujieZheng ·
We are planning to open-source the Qwen3.6 models (particularly medium-sized versions) to facilitate local deployment and customization for developers. Please vote for the model size you are **most** anticipating—the community’s voice is vital to us!
L
Larsen Cundric @larsencc ·
"What the fuck is running on port 3000?" Built a simple and clean CLI that answers this instantly. > "ports" shows every dev server on your machine > "ports clean" kills the orphaned ports > "ports watch" monitors in real-time Try it out ↓ https://t.co/hLmJXKEej9
S
Sudo su @sudoingX ·
look this just happened to hermes agent. if you're not aware, you now have 7 pluggable memory systems to choose from. self-hosted or cloud. local sqlite or knowledge graphs. vector search or filesystem hierarchy. pick what fits your workflow and plug it in. run 'hermes update' then 'hermes memory setup' and you're live. the memory system is now fully pluggable. anyone can build their own memory provider as a plugin. this is what shipping looks like. follow @Teknium for the fastest updates in hermes agent and open source AI.
T Teknium @Teknium

Hermes Agent now supports @plastic_lab's Honcho, @mem0ai, @openvikingai, @Vectorizeio's Hindsight, @retaindb, and @ByteroverDev memory systems! Try them now with `hermes update` then `hermes memory setup` We have rehauled our memory system to be much more maintainable and pluggable, so anyone can make their own memory system to build on top of Hermes easily and cleanly with a special class of plugin! Which memory system is your favorite?

A
andy nguyen @kevinnguyendn ·
Karpathy just validated the exact architecture we open-sourced today. Markdown vaults are the endgame for AI memory. But instead of running manual LLM compilation steps, we built ByteRover to handle it automatically. It gives you the human-readable files of Obsidian, but the backend automatically creates nodes, links, and context graphs for agents (OpenClaw, Claude Code, etc.) to use natively. If you want this "second brain" out of the box, we just open-sourced it: https://t.co/4lox55tVW4
K karpathy @karpathy

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

P
Peter Steinberger 🦞 @steipete ·
RT @lennysan: "Using coding agents well is taking every inch of my 25 years of experience as a software engineer, and it is mentally exhaus…
A
AVB @neural_avb ·
Lessons from this post: > people don’t understand what edge models are for > people don’t understand LLM usecases outside “coding” > people don’t understand there is AI outside LLMs > people don’t understand shipping local narrow ai features > most people here are bots https://t.co/sKgBN9Tx2B
N neural_avb @neural_avb

This guy is BEYOND CRACKED. Gemma 4 already on MLX, bro has uploaded all models with quantization. 125 models uploaded in last few hours 🤯 New mlx-vlm repo also supports turbo-quant, and rf-detr too (among other things) If you are a mac dev, you better be jumping at this. Bookmark him, turn his notifications on, sponsor his work.

G
Georgi Gerganov @ggerganov ·
Son lead the development on HF/llama.cpp side for adding support for the new Gemma 4 models. As always, he did an outstanding job throughout the collaboration with the Google DeepMind team. Day-0 support is possible thanks to his hard work!
N ngxson @ngxson

While working on the pre-release support of gemma 4, I was surprised by its capabilities compared to their size. We're tapping on the surface here, there are more and more to discover about gemma 4. I'm excited to see what the community will do with it in the next few days 🚀🚀

S
Steve Ruiz @steveruizok ·
RT @jphorism: Your Hermes agent writes things every session — research, skills, decisions, logs. After a few weeks, you've got hundreds of…
R
Ray Fernando @RayFernando1337 ·
Start tmux omx --madmax --high $deep-interview "clarify the authentication change" Welcome to the new world.
J jxnlco @jxnlco

What’s everyone’s thoughts on oh my codex?

E
Elon Musk @elonmusk ·
Next flight of Starship and first flight of V3 ship & booster is 4 to 6 weeks away https://t.co/tg4OQQ7pyI
T
Theo - t3.gg @theo ·
We need to talk about the Claude Code rate limits https://t.co/La6avNgSCh
0
0xSero @0xSero ·
Free Droid for all.