Public / Go / AGPL-3.0
The single write boundary for my event-driven systems. Korpus validates every event against a JSON Schema before it touches the database, then persists the canonical record to Postgres.
View on GitHub →Every service I ran was duplicating the same work: validating payloads, mapping them to tables, handling upserts, retrying when dependencies weren't ready yet. Korpus puts all of that in one place. You define schemas, publish events, and let Korpus deal with the durable write path.
Schemas live alongside the services that own them. Korpus discovers them on startup, builds the database layer from the definitions, and keeps contracts explicit. If a payload doesn't match, it gets rejected before anything is written.
I run Korpus in production for my personal infrastructure. It's stable and does what I need. Open-sourced under AGPL-3.0, with a commercial license available for proprietary use.