secondbrain-db
Installation
SKILL.md
secondbrain-db
sbdb v2 is a file-backed knowledge base ORM with per-md sidecar integrity, YAML schemas,
Starlark virtual fields, HMAC signing, and a SQLite-backed knowledge graph.
It ships as two products from the same codebase:
- The
sbdbCLI (a single static binary). - An embeddable Go library at
github.com/sergio-bershadsky/secondbrain-db/pkg/sbdb.
Storage layout (v2, important)
For each document there are exactly two files, sibling to each other:
docs/<entity>/<id>.md ← markdown body + YAML frontmatter
docs/<entity>/<id>.yaml ← per-doc integrity sidecar (SHAs + optional HMAC)
There is no data/ directory — that was v1. v2 has no aggregate
Related skills