@breadai/store-sqlite
v0.1.2
Published
SQLite BreadStore for bread on Bun — persists sessions, checkpoints, the knowledge graph, and documents to a file (or :memory:) via Bun's built-in bun:sqlite. Bun-only.
Maintainers
Readme
@breadai/store-sqlite
SQLite BreadStore on Bun's built-in bun:sqlite — a local
file, no service, no native addon. The full store contract: sessions, messages, checkpoints,
loops, task runs, knowledge graph, documents.
bun add @breadai/store-sqliteimport { defineConfig } from '@breadai/core'
import { store } from '@breadai/store-sqlite'
export default defineConfig({
entrypoints: ['researcher'],
store: store({ path: './bread.db' }), // or ':memory:'
})Part of bread — an explicit-by-design framework for AI agents. Docs: store · all docs.
License
MIT © Matteo Zambon
