Week 15 Summary

Simon Willison — Week of 2026-04-04 to 2026-04-10#

Highlight of the Week#

Anthropic’s decision to delay the general release of their highly capable Claude Mythos model under “Project Glasswing” marks a significant turning point in the AI industry. The move underscores a massive shift in frontier model capabilities, as models evolve from generating text to autonomously chaining multiple minor vulnerabilities into sophisticated exploits, requiring a new level of security safeguards before release.

Week 19 Summary

AI@X — Week of 2026-04-18 to 2026-05-01#

The Buzz#

The enterprise software paradigm is undergoing a seismic shift from human-centric, seat-based SaaS to “headless,” consumption-based API platforms driven by autonomous agents. As agents become the primary software users who “yolo straight to the tokens,” developers are realizing that traditional graphical user interfaces are increasingly obsolete for deep operational workflows. This pivot to an agent-first ecosystem is vastly expanding the total addressable use-cases for systems of record, while aggressively rendering recent LLMOps wrappers and visual interfaces completely obsolete.

Week 20 Summary

Simon Willison — Week of 2026-05-08 to 2026-05-15#

Highlight of the Week#

The standout development this week is Simon’s rapid adaptation to the latest frontier model capabilities, most notably releasing llm 0.32a2 to expose and visualize the new interleaved reasoning tokens of GPT-5 class models directly in the terminal. This perfectly pairs with his hands-on explorations of embedding LLM calls deeply into developer workflows, such as executing prompts via script shebangs and leveraging models to output rich HTML rather than just Markdown.

Week 23 Summary

Simon Willison — Week of 2026-05-29 to 2026-06-05#

Highlight of the Week#

The single most impactful update this week is the release of Datasette 1.0a31, which marks a massive paradigm shift by introducing UI support for executing write queries directly against the database. By allowing developers with the right permissions to set up templated insert, update, and delete operations as “stored queries,” Simon is aggressively evolving Datasette from a purely read-only tool into one that embraces secure data mutation.

2026-07-06

Engineering Reads — 2026-07-06#

The Big Idea#

The software industry’s adoption of agentic AI has decisively moved from aspirational proofs-of-concept to production reality, bringing with it a brutal reckoning with operational costs and a reaffirmation that fundamental architectural design matters more than ever. We are discovering that LLMs do not excuse bad code; rather, clean architecture is now an economic imperative measured directly in token efficiency.

Deep Reads#

Fragments: July 6 · Martin Fowler Martin Fowler’s latest dispatch from the Future of Software Development Retreat highlights a sharp pivot in the agentic engineering landscape: developers are no longer debating whether AI can write software, but are actively shipping agent-assisted code to production. However, this rapid operationalization has triggered what is being called the “Tokenpocalypse,” with enterprises seeing LLM API bills triple in less than a year, prompting extreme mitigation tactics like throttling usage or forcing models to output “caveman” syntax to minimize token footprints. A core technical debate has emerged regarding system design: while some hope LLMs possess a “Galaxy Brain” capable of navigating spaghetti code, the prevailing consensus argues that developer experience and agent experience share the exact same underlying needs. Good modularity and clear naming conventions help agents just as much as humans, to the point where an architecture’s quality can now be quantifiably measured by how few tokens it requires to safely implement a change. Furthermore, maintaining clean, decoupled design acts as a crucial hedge against the growing risks of AI vendor lock-in, skyrocketing costs, and potential regulatory restrictions. Practitioners evaluating or scaling agentic workflows should read this to understand why building conceptual models and cultivating “mechanical sympathy” for LLMs are replacing raw prompting as the defining skills of this new era.

2026-07-08

Simon Willison — 2026-07-08#

Highlight#

Jarred Sumner’s post on rewriting Bun from Zig to Rust using AI agents is an incredible showcase of how frontier LLMs are upending the old Spolsky rule of “never rewrite from scratch”. It is a masterclass in agentic engineering, utilizing dynamic workflows and a TypeScript conformance suite to successfully port millions of lines of code.

Posts#

Rewriting Bun in Rust · Source Jarred Sumner details the agentic engineering process of rewriting Bun from Zig to Rust to solve complex memory management issues. Using a language-independent TypeScript test suite as a conformance suite, an agent harness powered by Claude Mythos/Fable automated the massive code translation. The sheer scale of the project required 5.9 billion input tokens—around $165,000 at API pricing—proving that coordinated parallel agents fundamentally change the calculus of ground-up software rewrites.

2026-07-05

Simon Willison — 2026-07-05#

Highlight#

Simon demonstrates the profound impact of agentic engineering by having Claude Fable and GPT-5.5 audit and finalize the sqlite-utils 4.0rc2 release. The process highlights the power of cross-model review and reveals that a major codebase overhaul via autonomous agents would cost around $150 in raw API usage.

Posts#

sqlite-utils 4.0rc2, mostly written by Claude Fable Simon used Claude Code (running Claude Fable) from his iPhone to conduct a final review of the upcoming sqlite-utils 4.0 release, uncovering severe data-loss bugs related to transaction handling. Over 37 prompts and 34 commits, the agent churned through code asynchronously while Simon attended a 4th of July parade. Interestingly, Simon employed a cross-model review strategy, using GPT-5.5 to check Claude’s work, which successfully caught two additional high-priority bugs. He also used the AgentsView tool to calculate that the entire autonomous refactoring session would have cost $149.25 in raw API fees. Finally, he notes that AI agents are perfect for generating release notes since they require boring, predictable accuracy.

2026-04-05

Simon Willison — 2026-04-05#

Highlight#

Simon highlights a deep-dive post by Lalit Maganti on the realities of “agentic engineering” when building a robust SQLite parser. The piece beautifully articulates a crucial lesson for our space: while AI is incredible at plowing through tedious low-level implementation details, it struggles significantly with high-level design and architectural decisions where there isn’t an objectively right answer.

Posts#

Eight years of wanting, three months of building with AI Simon shares a standout piece of long-form writing by Lalit Maganti on the process of building syntaqlite, a parser and formatter for SQLite. Claude Code was instrumental in overcoming the initial hurdle of implementing 400+ tedious grammar rules, allowing Lalit to rapidly vibe-code a working prototype. However, the post cautions that relying on AI for architectural design led to deferred decisions and a confusing codebase, ultimately requiring a complete rewrite with more human-in-the-loop decision making. The core takeaway is that while AI excels at tasks with objectively checkable answers, it remains weak at subjective design and system architecture.

2026-04-30

Sources

The Agentic Ceiling, AI Bubble Tremors, and GPT-5.5 Teasers — 2026-04-30#

Highlights#

The conversation today is deeply split between the practical realities of deploying agents and growing skepticism around the financial sustainability of the frontier AI ecosystem. While leading voices are codifying “agentic engineering” as the next major software paradigm and defining new taxonomies for enterprise deployment, there is an equally loud chorus warning of an impending AI financial bubble, massive capital misallocation, and the troubling rise of “cognitive surrender” among junior knowledge workers.

2026-05-06

Simon Willison — 2026-05-06#

Highlight#

The highlight of today is Simon’s candid reflection on how highly reliable coding tools like Claude Code are blurring the line between professional “agentic engineering” and hands-off “vibe coding”. He raises important questions about accountability, the loss of traditional software evaluation metrics, and how the bottlenecks of the entire software development lifecycle are radically shifting.

Posts#

Vibe coding and agentic engineering are getting closer than I’d like Simon expands on a recent podcast conversation to discuss how he is increasingly treating AI agents like Claude Code as semi-black boxes, trusting them to write unreviewed production code. He notes that because AI can generate comprehensive tests and beautiful readmes in minutes, traditional signals of software quality are losing their value, making actual usage the most important metric. Furthermore, he observes that as coding speeds up exponentially, upstream bottlenecks like cautious, extensive design processes are being fundamentally challenged. Despite these shifts, he isn’t worried about the future of software engineering careers, emphasizing that these tools are simply amplifiers for a discipline that remains fiercely difficult.