WEBVTT
NOTE The Rundown — nextbig.dev daily audio edition, 2026-02-23

1
00:00:00.000 --> 00:00:05.639
<v Marcus>Hey everyone, welcome to the Builder's Briefing for February twenty-third, twenty twenty-six. I'm Alex, joined as always by Sam, and today — oh boy — someone basically published the playbooks for every major AI coding tool.

2
00:00:05.639 --> 00:00:12.491
<v Nadia>Yeah, this one's been blowing up all morning. We've also got Karpathy coining a new term for agent behavior, running a seventy-billion-parameter model on a single consumer GPU, and a guy who accidentally took over seven thousand robot vacuums. So, you know, a normal day.

3
00:00:12.491 --> 00:00:19.647
<v Marcus>Let's jump right into the big story. A repo went viral on GitHub — over forty-five hundred stars already — collecting the leaked system prompts for more than thirty AI coding tools. We're talking Claude Code, Cursor, Devin, Windsurf, Replit, Lovable, v0, Manus — basically everybody.

4
00:00:19.647 --> 00:00:26.196
<v Nadia>This is wild because these system prompts are essentially the product decisions. Like, how does Cursor handle tool use versus Devin? How does Lovable structure code generation differently from Replit? All of that is just sitting there now for anyone to study.

5
00:00:26.196 --> 00:00:32.265
<v Marcus>Exactly. And Anthropic's own Claude Code repo, which has another twenty-five hundred stars, adds even more context on internal wiring. So if you're building AI dev tools, you basically have a cheat sheet from every top team in the industry.

6
00:00:32.265 --> 00:00:39.319
<v Nadia>Right, and what's interesting is what this means strategically. If your competitive moat was a clever system prompt — that's gone. Poof. The real differentiation now is execution, UX, workflow integration. Things like context management, multi-file editing, deployment pipelines.

7
00:00:39.319 --> 00:00:45.969
<v Marcus>I think we're going to see serious market consolidation over the next six months around the tools that nail the full workflow, not the ones relying on prompt tricks. If you're building in this space, spend your energy on agent orchestration and tool integrations.

8
00:00:45.969 --> 00:00:47.562
<v Nadia>Which actually ties perfectly into a few of today's AI stories.

9
00:00:47.562 --> 00:00:56.766
<v Marcus>It really does. First up — claude-mem. It's a persistent memory plugin for Claude Code that auto-captures everything Claude does during a session, compresses it, and injects relevant context into future sessions. If you've been hitting Claude's context ceiling on long projects, this is basically long-term memory without manually maintaining your CLAUDE.md files.

10
00:00:56.766 --> 00:01:01.191
<v Nadia>That's huge for anyone doing multi-day projects. I've definitely felt the pain of Claude forgetting everything between sessions. This is a drop-in fix, which is the best kind.

11
00:01:01.191 --> 00:01:06.830
<v Marcus>Then we've got Karpathy weighing in. He's framing what he calls 'claws' — persistent, autonomous agent loops that grip onto tasks across sessions and tool boundaries. This kicked off over seven hundred Hacker News comments.

12
00:01:06.830 --> 00:01:13.733
<v Nadia>I love that framing. It's not just an agent that responds — it's one that latches onto a goal and keeps pursuing it over time. That's the trajectory the whole industry is converging on, and it maps directly to the workflow orchestration point from the leaked prompts story.

13
00:01:13.733 --> 00:01:20.080
<v Marcus>And one more from the AI section that caught my eye — Taalas is literally printing LLM weights directly onto custom silicon. No loading models from memory at inference time. If it scales, we could see sub-ten-millisecond inference for specific models.

14
00:01:20.080 --> 00:01:25.162
<v Nadia>That's a different paradigm entirely. You're baking the model into the chip. For latency-sensitive products — real-time coding assistants, robotics, anything interactive — that could be a game changer.

15
00:01:25.162 --> 00:01:31.180
<v Marcus>Alright, dev tools. Boris Tane posted a workflow that got three hundred fifty-nine points on Hacker News — separation of planning and execution with Claude Code. Use Claude to plan in one pass, then execute in a separate constrained pass.

16
00:01:31.180 --> 00:01:39.145
<v Nadia>This pairs so well with the claude-mem plugin. And honestly, if you're getting mediocre results from AI coding assistants, this is probably your issue. The fix isn't a better model — it's separating the think step from the do step. I've been trying this myself and the difference in output quality is night and day.

17
00:01:39.145 --> 00:01:43.823
<v Marcus>Also really cool — zclaw, a functional AI assistant running on an ESP32 microcontroller in under eight hundred eighty-eight kilobytes. Useful AI without cloud roundtrips on a tiny chip.

18
00:01:43.823 --> 00:01:47.641
<v Nadia>Under a megabyte! If you're doing anything in edge AI or IoT, that's a proof point worth studying. Not everything needs to phone home to a data center.

19
00:01:47.641 --> 00:01:52.420
<v Marcus>Okay, infrastructure. This one blew my mind. Someone got Llama 3.1 seventy-B running on a single RTX 3090 by streaming model weights directly from NVMe to GPU, completely bypassing the CPU.

20
00:01:52.420 --> 00:01:58.135
<v Nadia>A single 3090! That's like a thousand-dollar card running a seventy-billion-parameter model. You'll pay in latency per token, but if you're self-hosting and can't stomach multi-GPU costs, this could slash your hardware budget.

21
00:01:58.135 --> 00:02:04.557
<v Marcus>And a quick one — FloeDB published a two-bit bloom filter technique that doubles accuracy with minimal overhead. If you're building data pipelines or cache layers where false positives matter, it's a drop-in upgrade to your probabilistic data structures.

22
00:02:04.557 --> 00:02:06.479
<v Nadia>Love a good data structure improvement. Simple, elegant, immediately useful.

23
00:02:06.479 --> 00:02:11.916
<v Marcus>Security corner — two stories that are almost comedy if they weren't terrifying. First, a botnet accidentally destroyed the I2P anonymity network. Not a targeted attack — just collateral damage from a traffic flood.

24
00:02:11.916 --> 00:02:16.012
<v Nadia>Accidentally! If you're building on decentralized or overlay networks, resilience to traffic spikes can't be an afterthought. It has to be a design-time decision.

25
00:02:16.012 --> 00:02:19.425
<v Marcus>And then a researcher stumbled into control of seven thousand robot vacuums through a vulnerability. Just — oops, I own your fleet now.

26
00:02:19.425 --> 00:02:27.087
<v Nadia>Your weekly reminder, folks — audit your device auth and command authorization flows. Especially if you're shipping connected hardware. On a brighter note, Authelia just got official OpenID certification, so if you're self-hosting services, that's now the most credible open-source SSO option out there.

27
00:02:27.087 --> 00:02:32.802
<v Marcus>Quick hits — we've got a great piece on parse-don't-validate type-driven design in Rust, PlanetScale explaining database transactions from first principles, and a fun one — someone explaining why they switched back to FreeBSD.

28
00:02:32.802 --> 00:02:38.036
<v Nadia>The FreeBSD one got a hundred sixty-eight Hacker News points. There's also a nice essay on why attention media is not the same as social networks — really useful framing if you're building consumer products.

29
00:02:38.036 --> 00:02:46.886
<v Marcus>So here's today's takeaway. The internals of AI coding tools are no longer secret. The best builders are already treating those leaked prompts as study material. But the real lesson is that differentiation lives in workflow orchestration — planning versus execution separation, persistent memory, multi-agent coordination — not in prompt engineering.

30
00:02:46.886 --> 00:02:52.904
<v Nadia>If you're using AI coding tools today, adopt the plan-then-execute pattern and add session memory with something like claude-mem. The teams winning in six months are going to be the ones who mastered agent context management starting now.

31
00:02:52.904 --> 00:02:56.368
<v Marcus>That's the briefing for today. Links for everything we covered are in the show notes. We'll be back tomorrow — until then, keep building.

32
00:02:56.368 --> 00:02:57.000
<v Nadia>See you next time, folks.
