@grackle-ai/database
v0.108.0
Published
SQLite persistence layer for Grackle — schema, stores, and migrations
Downloads
11,005
Maintainers
Readme
@grackle-ai/database
SQLite persistence layer for Grackle — schema definitions, store modules, migrations, and encrypted token storage.
What it provides
- Schema — Drizzle ORM table definitions for environments, sessions, tasks, workspaces, findings, personas, settings, tokens, and domain events
- Stores — Focused CRUD modules for each entity (e.g.,
sessionStore,taskStore,workspaceStore) - Migrations — Idempotent schema migrations that run on every startup
- Seeding — Application-level defaults (personas, root task, settings backfills)
- Crypto — AES-256-GCM encryption for token storage
Usage
import { openDatabase, initDatabase, seedDatabase, sqlite, sessionStore } from "@grackle-ai/database";
// Initialize at startup
openDatabase();
initDatabase();
seedDatabase(sqlite!);
// Use stores
const session = sessionStore.getSession("session-123");Requirements
- Node.js >= 22
better-sqlite3native module (built at install time)
License
MIT
