sqlite-utils 4.0rc2: Written by Claude Fable, $149.25, Fixes Data Loss Bug

Simon Willison shipped sqlite-utils 4.0rc2, a Python library for SQLite, written mostly by Claude Fable. The total cost: about $149.25 in API fees over 37 prompts and 34 commits, changing +1,321 -190 lines across 30 files.
What Changed
The release candidate fixes a critical data loss bug in Table.delete_where() — previously, it never committed, leaving the connection in-transaction and poisoning all subsequent writes. Here's the reproduction from Fable's analysis:
db = sqlite_utils.Database("dw.db")
db["t"].insert_all([{"id": i} for i in range(3)], pk="id")
db["t"].delete_where("id = ?", [0])
# conn.in_transaction is now True
db["t"].insert({"id": 50})
db["u"].insert({"a": 1})
db.close()
# Reopen: rows are [0, 1, 2] — the delete, row 50, AND table u are all gone.
Willison calls this a “really bad bug” — one he’s glad Fable caught before the stable 4.0 release.
New Transaction Model
Every write method (insert(), upsert(), update(), delete(), delete_where(), transform(), create_table(), enable_fts(), etc.) now runs inside its own transaction and commits before returning. No manual commit() needed.
Two exceptions:
- Use
db.atomic()to group multiple operations atomically - If you open a transaction with
db.begin(), the library will never commit it — you control the commit
Python 3.12+ autocompat Support
Fable also ensured compatibility with Python 3.12's new sqlite3.connect(..., autocommit=True|False) mode. The library's automatic per-method transactions are designed for default connection mode, and Fable patched the test suite to pass under the new autocommit settings.
Review Process
Willison started the work on his iPhone via Claude Code for web, then switched to a laptop for final review via GitHub PRs. He says reviewing documentation edits first is an excellent way to understand what changed. A final review by GPT-5.5 caught additional edge cases — the full PR transcript is shared.
Who It's For
Python developers who use sqlite-utils for lightweight database ops and want a production-ready 4.0 release with proper transaction safety.
📖 Read the full source: HN AI Agents
👀 See Also

Open Memory Protocol: One Memory Store for Claude, ChatGPT, Cursor
Open Memory Protocol (OMP) is a vendor-neutral spec and reference server for portable AI memory. Run a self-hosted server via Docker or npx, connect Claude via MCP, and share memory automatically with ChatGPT and Cursor.

Anthropic Open-Sources Claude for Legal: Plugin Suite for Contract Review, NDA Triage, and More
Anthropic released Claude for Legal, a repo of plugins, agents, and MCP connectors for legal workflows including vendor agreement review, NDA triage, and regulatory monitoring.

AlterSpec v1.0: Runtime Policy Enforcement for AI Agents
AlterSpec v1.0 is an open-source runtime enforcement engine that sits between AI agents and their tools, evaluating actions against YAML-defined policies before execution. It provides allow/deny/review decisions, cryptographic policy signing, and audit logging.

Multi-Agent Career Mentor Built with Ollama and MCP for Local AI
A developer built a 5-agent AI system that analyzes resumes and generates career intelligence reports using Ollama with llama3 locally. The system chains agent outputs so each builds on previous context, with MCP handling tool integration.