Local-First & Offline
Your library lives on device first (SQLite + full-text search). Work offline; changes queue in an outbox and sync when you reconnect.
On-device library
Storage
- Local SQLite database
- Full-text search · FTS5
- Library stays on device
Durable outbox
Queue
- Changes land locally first
- Outbox survives reloads
- Flush when online
- Merge remote updates
Works offline
What you can do
- Browse · search · open items
- Capture · organize · edit
- No network wait for core work
Same model everywhere
Clients
- Web · desktop · mobile · extension
- Same local-first idea on each
Portable data
- Export Markdown · CSV · ZIP
- Import from major tools · structured files

Docs