selvage
local-first hybrid-search layer over scattered team knowledge
liveflagshippubliclast active 2026-07
how it works
built out of the same parts
Selvage is a thin, hybrid-searchable layer over the places team knowledge actually lives — Slack, wikis, code, and databases. Connectors normalize every source into one Postgres + pgvector table, so the same query serves a person at a CLI, an agent over MCP, or the web UI. Local-first and MIT-licensed, with embeddings running on your own CPU.
measured
why three signals instead of one
| signal | exact token | paraphrase | rare term |
|---|---|---|---|
| full-text (GIN) | ● | ○ | ○ |
| vector (HNSW) | ○ | ● | ○ |
| rare-term (IDF) | ● | ○ | ● |
| all three, fused by RRF | ● | ● | ● |
Vector search alone misses an exact error code; full-text alone misses a paraphrase. RRF needs only ranks, so the three lists fuse without their scores having to be comparable.
source: selvage README