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

1
00:00:00.000 --> 00:00:06.972
<v Marcus>Hey everyone, welcome back to Builder's Briefing. I'm Alex, alongside Sam, and we have a packed one today — open-source models hitting frontier performance, Claude making it easier to switch, Karpathy teaching us all again, and some really interesting developer tooling drops.

2
00:00:06.972 --> 00:00:10.382
<v Nadia>Yeah, there's a theme running through all of today's news and I think people are going to pick up on it pretty fast. Let's get into it.

3
00:00:10.382 --> 00:00:16.419
<v Marcus>Alright, the big story — Alibaba dropped Qwen 3.5 in two sizes, a hundred twenty-two billion and thirty-five billion parameters. And here's the headline: the thirty-five B model is benchmarking at Anthropic's Sonnet 4.5 level on key tasks.

4
00:00:16.419 --> 00:00:21.446
<v Nadia>Okay, that's wild. Thirty-five billion parameters. That's small enough to run on a beefy Mac Studio or a single A100 with quantization. You're talking frontier-class performance on consumer hardware.

5
00:00:21.446 --> 00:00:27.129
<v Marcus>Exactly. No API calls, no rate limits, no per-token billing, full data privacy. If you're running inference-heavy workloads — RAG pipelines, coding agents, structured extraction — the economics of that just changed overnight.

6
00:00:27.129 --> 00:00:33.899
<v Nadia>Right, and what's important here is don't just trust the benchmark numbers. Spin it up with llama.cpp or vLLM and test it against your actual eval suite, on your data. Every model has quirks, but if it holds up on your tasks, you just eliminated a massive cost center.

7
00:00:33.899 --> 00:00:41.704
<v Marcus>And the bigger signal is this — every quarter, the open-source frontier catches up by another generation. The window where closed-model providers can charge premium prices for premium quality is shrinking fast. If your product depends on one provider's moat, you should be designing for portability right now.

8
00:00:41.704 --> 00:00:44.659
<v Nadia>Build your value above inference. That's the takeaway I keep coming back to. The model layer is becoming a commodity.

9
00:00:44.659 --> 00:00:51.909
<v Marcus>Which actually dovetails perfectly with our next story. Anthropic shipped a memory import feature for Claude — you can go to their import page, link in the briefing, and port your conversation history and preferences from ChatGPT or other assistants. Switching cost just dropped to zero.

10
00:00:51.909 --> 00:00:57.618
<v Nadia>That's interesting because it tells you where Anthropic thinks the moat is. It's not the model itself anymore — it's user context, personalization, stickiness. They're basically saying, come for the model, stay for the memory.

11
00:00:57.618 --> 00:01:04.135
<v Marcus>And speaking of Claude — there's a new MCP server called Context Mode that cuts Claude Code's context usage by ninety-eight percent per session. That directly hits your API bill and lets you work on much larger codebases without blowing through token limits.

12
00:01:04.135 --> 00:01:08.783
<v Nadia>Ninety-eight percent? That's not an optimization, that's a paradigm shift. If you're using Claude Code for anything beyond small scripts, go integrate that today. Link in the briefing.

13
00:01:08.783 --> 00:01:17.118
<v Marcus>Also worth calling out — Andrej Karpathy published MicroGPT, a minimal GPT implementation stripped down to the absolute essentials. Five hundred twenty-one points on Hacker News. If you're onboarding junior engineers or you just want to truly understand what's happening under the hood, this is the single best resource out there.

14
00:01:17.118 --> 00:01:22.650
<v Nadia>Karpathy has this gift for making complex things feel approachable without dumbing them down. Every team should have at least one person who's gone through something like this. You can't debug what you don't understand.

15
00:01:22.650 --> 00:01:30.026
<v Marcus>One more on the AI side — there's a working demo of ad-supported AI chat that someone shipped. It's a preview of where consumer AI might be heading, and if you're building AI products, it's worth thinking about whether your pricing model survives a world where inference is subsidized by ads.

16
00:01:30.026 --> 00:01:34.598
<v Nadia>The race to the bottom on inference pricing was already happening. Ads accelerate that to free. Scary if you're charging for raw model access, great if you're building value on top.

17
00:01:34.598 --> 00:01:41.696
<v Marcus>Okay, let's shift to developer tools because there are some really good ones. Microsoft's MarkItDown just hit four thousand stars on GitHub — it's a Python tool that converts any Office document to Markdown. PDFs, DOCX, PPTX, all to clean Markdown ready for chunking and embedding.

18
00:01:41.696 --> 00:01:46.975
<v Nadia>Oh, this is one of those tools that solves the most annoying step in every RAG pipeline. Everyone hand-rolls document conversion and it's always messy. Having Microsoft maintain a proper tool for this is huge.

19
00:01:46.975 --> 00:01:53.341
<v Marcus>Vercel also shipped an official Agent Skills library — pre-built capabilities you can compose into AI agents. Browser automation, file operations, all standardized. If you're on Next.js building agent-powered features, this saves you a ton of plumbing.

20
00:01:53.341 --> 00:01:58.999
<v Nadia>I love that pattern — agent skills as composable building blocks. Between this and MCP servers becoming the standard integration layer for giving agents access to data, we're seeing a real stack emerge for agent development.

21
00:01:58.999 --> 00:02:06.451
<v Marcus>And there's a great essay making the rounds called 'AI Made Writing Code Easier, Engineering Harder.' The argument is that while AI handles syntax, the hard parts — architecture, tradeoffs, debugging production systems — haven't gotten easier and may have gotten harder as codebases grow faster.

22
00:02:06.451 --> 00:02:12.943
<v Nadia>That resonates deeply. I've seen teams ship code faster than ever but the architectural debt accumulates just as fast. The skill set you need to hire for is shifting — less about writing code, more about designing systems and reviewing AI output critically.

23
00:02:12.943 --> 00:02:20.975
<v Marcus>Related to that — there's a new methodology called Verified Spec-Driven Development, VSDD, that combines formal specifications with AI code generation and uses verification to catch when the AI drifts from the spec. Hundred seventy-one points on Hacker News with ninety comments. The discussion alone is worth reading.

24
00:02:20.975 --> 00:02:24.941
<v Nadia>That's exactly the kind of guardrail we need. Let the AI generate, but verify against a formal spec. It's the trust-but-verify approach applied to AI coding.

25
00:02:24.941 --> 00:02:32.039
<v Marcus>Quick infrastructure note — Alibaba also open-sourced Higress, an API gateway designed specifically for AI workloads. Model routing, token-based rate limiting, multi-model load balancing, all built in. If you're running multiple models in production, this is purpose-built for you.

26
00:02:32.039 --> 00:02:36.055
<v Nadia>Alibaba is having quite a week between Qwen 3.5 and Higress. They're building the full stack for self-hosted AI — the model and the infrastructure to serve it.

27
00:02:36.055 --> 00:02:41.991
<v Marcus>On the security side, quick but important — Samsung pushed an update that removes sideloading from the Android recovery menu. If you're building or distributing Android apps outside the Play Store, your Samsung install path just broke.

28
00:02:41.991 --> 00:02:46.866
<v Nadia>Ouch. That's a big deal for enterprise app distribution and anyone in the sideloading ecosystem. It's a broader signal that OEMs are locking down distribution channels. Keep an eye on this one.

29
00:02:46.866 --> 00:02:54.596
<v Marcus>Alright, let's bring it home. The theme this week is unmistakable — the model layer is commoditizing faster than most product roadmaps account for. Qwen 3.5 matching Sonnet 4.5 at thirty-five B, Claude shipping memory import to reduce switching costs, MCP servers slashing API bills — all in the same week.

30
00:02:54.596 --> 00:03:01.265
<v Nadia>Right. So if you're building on AI, invest your engineering time in the layers above inference. Data pipelines — MarkItDown for ingestion. Agent orchestration — Vercel Agent Skills, MCP servers. Verified output quality — VSDD. That's where the durable value lives.

31
00:03:01.265 --> 00:03:05.887
<v Marcus>The teams that win will be the ones who can swap models quarterly without rewriting their product. Design for portability, build above inference, and test everything on your own data.

32
00:03:05.887 --> 00:03:08.716
<v Nadia>Well said. It's a great time to be building — the tools have never been better and they're only getting cheaper.

33
00:03:08.716 --> 00:03:12.000
<v Marcus>That's it for today's Builder's Briefing. All the links are in the show notes. We'll see you tomorrow — until then, keep shipping.
