Schema-as-code. Branch and merge. One binary. No server.
Every agent gets an isolated branch. Enrich, migrate, or remodel in parallel without touching main — then a human reviews the results and merges what works.
Each agent writes to its own copy-on-write branch. No locks, no conflicts, no risk to production data. Schema validation on every mutation.
A human starts a branch, an agent picks it up. Or an agent enriches data and a human reviews it. The branch is the handoff.
Schema migrations, bulk enrichments, new edge types — test any change on a branch. If it breaks, discard. Main stays clean.
Define your world model in .pg files. The compiler validates before anything touches your data.
React to graph changes. Run code when data arrives. Coming soon.
Every write creates an immutable snapshot. Query any past version.
Full-text, fuzzy, BM25, vector KNN, and hybrid. All inside your .gq queries.
Git-style branching with lazy copy-on-write. Three-way streaming merge.
Full-text, fuzzy, BM25, vector KNN, and hybrid with reciprocal rank fusion. All expressed inline in .gq files. Compose search with graph traversal in the same query.
Three text search modes with built-in inverted indexes. No external search service needed.
IVF-HNSW index on any Vector(N) column. Cosine distance. Your embeddings, your dimensions.
Reciprocal rank fusion combines text and vector scores. Tunable k parameter. Composes with graph traversal.
No garbage collector. Memory safety without runtime overhead. Single binary, minimal dependencies.
Open source format with built-in versioning. Each write creates a new version. Random access, not just column scans.
In-memory columnar execution. No serialization overhead. The same runtime powering Pandas, DuckDB, and Polars.
Production-grade query planner. Compiles graph queries to optimized execution plans.
One typed graph holds every entity, relationship, and version your agents touch.
Agents share one graph. Writes trigger downstream reads automatically.
Every write versioned. Every mutation validated. Every change reversible.