Rivet Actors adds SQLite storage: one database per agent, tenant, or document

Rivet Actors, an open-source alternative to Cloudflare Durable Objects, has released SQLite storage under Apache 2.0 license. Every actor gets its own SQLite database, allowing for millions of independent databases—one per agent, tenant, user, or document.
Key Details
This approach provides per-entity data isolation with SQLite running in-process with each actor. A custom VFS persists writes to HA storage (FoundationDB or Postgres). The single-writer actor model keeps reads local and fresh, unlike client-server databases where reads can be slow or stale.
Use cases include:
- AI agents: per-agent DB for message history, state, embeddings
- Multi-tenant SaaS: real per-tenant isolation without RLS hacks
- Collaborative documents: each document gets its own database with built-in multiplayer
- Per-user databases: isolated, scales horizontally, runs at the edge
How it compares
- Cloudflare Durable Objects & Agents: similar colocated SQLite and compute, but closed-source and vendor-locked
- Turso Cloud: closed-source with different use case—clients query over network, so reads are slow or stale
- D1, Turso (the DB), Litestream, rqlite, LiteFS: tools for running a single SQLite database with replication, while Rivet is for running lots of isolated databases
Rivet Actors also provide realtime (WebSockets), React integration (useActor), horizontal scalability, and actors that sleep when idle.
📖 Read the full source: HN AI Agents
👀 See Also

Solo Dev Uses Claude + Blender MCP to Create App Store Video in 90 Minutes
Reddit user Positive_Camel2086 details how they used Claude with the Blender MCP server to generate a 10-second vertical launch video, automating camera rigging, materials, fog, and particle systems via conversational prompts.

Fleet Commander: Open-source dashboard for orchestrating multiple Claude Code agent teams
Fleet Commander is a local web dashboard that runs multiple Claude Code agent teams in parallel on different issues. It uses a 'Diamond team' structure with Planner, Dev, and Reviewer agents that communicate peer-to-peer via SendMessage.

Multi-Agent Loop Failures Are Org-Design Failures, Not Prompt Failures
Agent loops bouncing between peers aren't prompt bugs—they're org-chart problems. Treat agent networks as hierarchies with clear stop authority.

Marketing Wisdom MCP: Free Semantic Search for Startup Insights
A free MCP server provides semantic search across 6,700 insights from 1,040 episodes of My First Million and Starter Story podcasts. It offers four tools for querying founder wisdom on growth, marketing, and business strategies.