Developer experience
Build infrastructure products, not provider glue.
Provider adapters, execution engines and dependencies sit behind explicit interfaces. Build against the control plane once.
Adapter model
One plan, multiple execution targets.
Blueprints and policies stay vendor-neutral while the execution adapter remains concrete.
resource "postgresql_database" "app" {
name = "app"
encoding = "UTF8"
}
# Generated from an IQGEN Plan.
# Apply remains subject to policy + approval.const db = new postgres.Database("app", {
name: "app",
region: blueprint.region,
storageGb: blueprint.storageGb,
});apiVersion: database.example.io/v1 kind: PostgreSQL metadata: name: app spec: version: "16" storage: 100Gi region: eu
DockerCompose target
HelmAny Kubernetes
VMConventional deployment
AdaptersDB · queue · vault · LLM
Repository
Open engineering specification.
The repository includes architecture, agent system, vendor integration, security, deployment and developer-experience documentation.
View on GitHubGetting started
Run it before you trust it.
Production integration setup and an offline mock-backed evaluation mode are documented in the project.
Read Getting Started