SQLite Is All You Need for Durable Workflows, And They Proved It
SQLite for durable workflows, Liquid AI's efficient MoE model, Zig build rework, MCP skepticism, and Perry compiles TypeScript to native binaries.
Hey everyone, welcome to Builder's Briefing for May thirty-first, twenty twenty-six. I'm Alex.
And I'm Sam. Good one today — the throughline is basically radical simplification, which, honestly, is my favorite kind of day.
Absolutely. We've got SQLite replacing entire workflow engines, a new mixture-of-experts model that only lights up one-eighth of its parameters, TypeScript compiling straight to native binaries, and a billion-dollar acquisition. Let's get into it.
Alright, the big story. Obelisk published this detailed breakdown of using SQLite — yes, plain old SQLite — as the backing store for durable workflow execution. Not a toy demo. They're talking production architecture.
Okay, so when they say durable workflows, they mean like the stuff you'd normally reach for Temporal or Celery plus Redis for? Multi-step orchestration, retries, state machines?
Exactly. Their argument is that SQLite's WAL mode, its deterministic replay, and the single-writer model give you all the primitives you need. And for workloads under about a hundred thousand concurrent executions, it's not just sufficient — it's faster and dramatically simpler to operate.
That's interesting because if you think about what most teams are actually building right now — AI agent pipelines, background job systems — almost nobody is at a hundred thousand concurrent executions. You're bound to a single writer, sure, but that constraint literally doesn't matter until you're way past product-market fit.
Right. And this reinforces a pattern we've been watching for like eighteen months now. The boring infrastructure stack — SQLite, single-binary deploys, embedded databases — is eating the microservices world from below. If you're reaching for Kubernetes and distributed queues before you have ten paying customers, this is your wake-up call.
Ship the simplest thing. Scale when you actually need to. I love it. Link in the briefing if you want the full breakdown.
Okay, shifting to AI and models. Liquid AI dropped a new mixture-of-experts model — eight billion parameters total, but it only activates one billion at inference time. Trained on thirty-eight trillion tokens.
Thirty-eight trillion! That's a massive corpus. And the one-B active parameter thing is huge for edge deployment and cost-constrained environments. You're getting near-frontier quality at a fraction of the compute.
Yeah, if you're deploying on-device or watching your inference bill closely, benchmark this against Mistral and Phi for your specific use case. It could be a game-changer.
What about that MCP piece? Quandri's team is basically asking if Model Context Protocol is already dead. That feels spicy.
It is spicy. Their argument is that adoption is stalling because it's too complex and doesn't clearly beat plain function calling. But I'd call this the contrarian take, not the consensus. MCP may still find its niche in multi-agent scenarios, so don't rip it out of your stack just yet.
Right, and what's wild is we also got Harness today — an open-source framework that automatically designs agent teams and generates their skills. You describe a domain and it wires up the specialized agents for you. That's exactly the kind of multi-agent scenario where MCP could still matter.
Good connection. And one more fun one — a startup called Shift is offering to clean your home for free to collect real-world training data for robotic manipulation.
Free cleaning! The data-as-a-service flywheel is clever, but yeah, obvious questions about what else gets captured when you've got robots and sensors roaming around someone's house.
Alright, dev tools. This one made me sit up. Perry compiles TypeScript directly to native executables — runs it through SWC for parsing, then emits native binaries via LLVM. No Node, no Bun, no Deno at runtime.
Wait, so you could ship TypeScript CLIs as single static binaries? That's kind of the dream for a lot of teams. Early stage?
Early stage, but the implications are obvious. And it fits right into today's theme — single-binary deploys, minimal dependency trees. Link in the briefing.
And speaking of simplification, the Zig build system got a major rework. More composable, less magical. If you've been eyeing Zig for systems work or as a C/C++ build replacement, this removes one of the biggest friction points.
Also worth flagging — Steve Yegge wrote a piece called 'The Last Technical Interview,' arguing that the traditional leetcode-style screening is finally dying because AI coding assistants make it meaningless. Whether you agree or not, his framing of what to test instead — system design, taste, collaboration with AI tools — is really worth internalizing if you're hiring right now.
That one's going to generate takes for weeks. But he's not wrong that the signal from a whiteboard fizzbuzz is basically zero now.
Okay, big acquisition news. Downdetector and Speedtest — two of the most recognizable utilities on the internet — sold to Accenture for one point two billion dollars.
One point two billion! For Ookla's properties. That's a massive validation of the crowd-sourced infrastructure monitoring model. Community-contributed data creating a moat that's worth a billion-dollar exit.
If you're building dev tools with network effects around community data, that's your exit comp right there.
Quick hits before we wrap. Snowboard Kids 2 has been fully decompiled — an absolute masterclass in N64 reverse engineering. There's a gorgeous interactive demo of the Voxel Space terrain rendering algorithm from the old Comanche games. And IXI's autofocusing lenses are nearing production — could eventually replace multifocal glasses, which is wild.
The autofocusing lenses! That's one of those things that sounds like science fiction until it just quietly ships one day. Love it.
So here's the takeaway for today. The throughline is radical simplification. SQLite replacing workflow engines, single-binary TypeScript, MoE models activating one-eighth of their parameters. The builders who ship fast are the ones resisting the urge to add infrastructure until the problem actually demands it.
Seriously — if you're building AI agents or orchestration systems right now, evaluate whether SQLite plus a single process gets you to your next thousand users before you reach for distributed anything. The teams winning right now have the smallest dependency trees.
That's the briefing for May thirty-first. All the links are in the show notes. We'll be back tomorrow — until then, keep it simple, ship it fast.
See you tomorrow, folks!
SQLite Is All You Need for Durable Workflows — And They Proved It
Obelisk published a detailed breakdown of using SQLite as the backing store for durable workflow execution — not as a toy demo, but as a production architecture. The key insight: SQLite's WAL mode, deterministic replay, and single-writer model give you exactly the primitives you need for workflow state machines without dragging in Temporal, Redis, or Postgres. For most workloads under ~100K concurrent executions, SQLite on a single node is not just sufficient — it's faster and dramatically simpler to operate.
If you're building AI agent pipelines, background job systems, or multi-step orchestration (which is basically everyone right now), this is directly usable. Instead of standing up a Temporal cluster or wiring Celery to a broker, you can embed your workflow engine in-process with SQLite. The tradeoff is horizontal scaling — you're bound to a single writer — but for the vast majority of startups and side projects, that constraint doesn't matter until you're well past product-market fit.
This reinforces a pattern we've been seeing for 18 months: the 'boring infrastructure' stack (SQLite, single-binary deploys, embedded databases) is eating the microservices world from below. If you're reaching for Kubernetes and distributed queues before you have 10 paying customers, this is your wake-up call. Ship the simplest thing, scale when you actually need to.
Liquid AI Drops 8B-A1B MoE Trained on 38T Tokens
Liquid's new mixture-of-experts model activates only 1B parameters at inference while packing 8B total — trained on a massive 38T token corpus. If you're deploying models on edge or cost-constrained environments, this is the kind of architecture that lets you get near-frontier quality at a fraction of the compute. Worth benchmarking against Mistral and Phi for your specific use case.
Tiny-vLLM: High-Performance LLM Inference in C++ and CUDA
A from-scratch LLM inference engine in C++ and CUDA, designed to be readable and hackable. If you're building custom inference pipelines and vLLM's Python layer is too much abstraction, this gives you a clean codebase to fork and extend.
Quandri Asks: Is MCP Already Dead?
Quandri's engineering team argues that Model Context Protocol adoption is stalling due to complexity and unclear value over plain function calling. If you've been investing heavily in MCP tooling, it's worth reading — but don't rip it out yet. The protocol may still find its niche in multi-agent scenarios; the premature obituary is the contrarian take here, not the consensus.
Harness: A Meta-Skill That Designs Agent Teams and Generates Their Skills
An open-source framework for automatically designing domain-specific agent teams — you describe the domain, it defines specialized agents and generates the skills they use. Interesting for anyone building multi-agent systems who's tired of hand-wiring agent roles.
Shift Will Clean Homes for Free — To Train Robots
A startup offering free home cleaning to collect real-world training data for robotic manipulation. The data-as-service play is clever but raises obvious questions about what else gets captured. If you're in robotics or embodied AI, this is the kind of data flywheel to study — or compete with.
KServe: Standardized AI Inference on Kubernetes
KServe continues to mature as the go-to open-source platform for deploying generative and predictive models on K8s. If you're running multi-framework model serving and want autoscaling, canary rollouts, and GPU sharing out of the box, this is production-ready infrastructure worth evaluating.
Zig Build System Gets a Major Rework
The Zig build system has been substantially reworked to be more composable and less magical. If you've been eyeing Zig for systems work or as a C/C++ build tool replacement, this removes one of the biggest friction points. The new design makes cross-compilation and dependency management significantly more predictable.
Perry Compiles TypeScript Directly to Native Executables via SWC + LLVM
Perry takes TypeScript, pipes it through SWC for parsing, and emits native binaries via LLVM — no Node, no Bun, no Deno at runtime. Early stage but the implications are obvious: if this matures, you could ship TypeScript CLIs and microservices as single static binaries.
Openrsync: OpenBSD's Clean-Room rsync Implementation
A BSD-licensed rsync implementation from the OpenBSD team. If you're embedding file sync into a product and can't take GPL dependencies, this is the library you've been waiting for.
Steve Yegge on 'The Last Technical Interview'
Yegge argues the traditional technical interview is finally dying as AI coding assistants make leetcode-style screening meaningless. Whether you agree or not, if you're hiring engineers right now, his framing of what to test instead (system design, taste, collaboration with AI tools) is worth internalizing.
Playwright Trending on GitHub
Microsoft's browser automation framework continues its dominance — if you're building AI agents that interact with web UIs, Playwright remains the best foundation for reliable browser control across Chromium, Firefox, and WebKit.
Ember.js 7.0 Released
Ember 7.0 lands with the expected modernization pass. If you're maintaining an Ember app, now's the time to plan migration. If you're starting something new, this doesn't change the calculus — React/Svelte/Vue still own mindshare.
Prusa Open-Sources ColorMix for Dozens-of-Colors 3D Printing
PrusaSlicer gets an open-source color mixing model that supports dozens of filament colors in a single print. If you're building hardware products or prototyping physical goods, this dramatically reduces post-processing for multi-color parts.
Pandoc Templates: A Curated Collection for Document Generation
A well-organized template gallery for Pandoc covering reports, invoices, letters, and more. If you're generating PDFs from Markdown in your app (and many SaaS products should be), this saves you hours of LaTeX wrestling.
Downdetector and Speedtest Sold to Accenture for $1.2B
Ookla's Speedtest and Downdetector — two of the internet's most recognizable utilities — are now Accenture properties. The $1.2B price tag validates the 'crowd-sourced infrastructure monitoring' model. If you're building developer tools with network effects around community-contributed data, this is your exit comp.
The throughline today is radical simplification. SQLite replacing workflow engines, single-binary TypeScript compilation, MoE models that activate 1/8th of their parameters — builders who ship fast are the ones who resist adding infrastructure until the problem demands it. If you're building AI agents or orchestration systems, seriously evaluate whether SQLite + a single process gets you to your next 1,000 users before you reach for distributed anything. The teams winning right now are the ones with the smallest dependency trees.