Launch HN: Ardent (YC P26) – Postgres sandboxes in seconds with zero migration
Ardent launches Postgres database sandboxing tool that uses logical replication and copy-on-write branching to give coding agents production-like environments without migrating away from existing database providers.
Hey HN! We’re Vikram and Evan from Ardent (https://tryardent.com). We're building database sandboxes for you and your coding agents.In the last two years coding agents have gotten dramatically more capable at handling complex engineering tasks. But without access to a realistic sandbox at the DB layer for testing, they ship garbage that can take down production databases. I spent over a year building an AI Data Engineer that failed for this exact reason. Evan spent the last 12 years in data engineering and hit this wall building agents at his last company.Ardent was built to make it possible for coding agents to get near instant access to production-like sandboxes so they can test their work.
To do this we write a replication stream out of the target DB, scaling with kafka onto a read replica with copy on write enabled and autoscaling compute (we currently prefer neon as a primary branching engine due to their implementation of these properties).Our replication stream uses logical replication + ddl triggers to enable usage on any hosted postgres DB since most platforms do not allow physical replication which is traditionally used for creating replicas.This provides…