Git-native workflow orchestration
Deterministic execution. Event-driven. Version-controlled.
4,200+ GitHub stars
FROM THIS
TO THIS
Modern applications run on a tangle of cron jobs, event handlers, and glue code. There is no single source of truth, no replay capability, and no visibility into what actually happened.
Built for production workloads
From prototype to production without rewriting your workflow.
Deterministic Execution
Same input, same output — every time. Enables replay, debugging, and testing without surprises.
Git-native
Workflows live in your repo. Versioned by commit hash. Diff, review, and rollback like code.
Event-Driven
No polling. PostgreSQL logical replication feeds workers directly. React to changes as they happen.
Designed for real production workflows
Patterns that teams actually run in production.
Backend Orchestration
Replace fragile glue code with declarative workflows. Coordinate microservices, APIs, and databases.
AI Pipelines
Chain LLM calls, embeddings, and vector searches with retries, branching, and human oversight.
Human Approval
Pause workflows for manual review and sign-off before critical steps. Resume automatically.
Event Automation
React to database changes, webhooks, and schedules. No polling, no wasted cycles.
Write once. Deploy anywhere.
Define your workflow as code. Run it anywhere.
name: order-processorversion: 1.0.0entry: validate_orderon_failure: retry(max: 3, backoff: 2s)steps:- name: validate_orderrun: api.check("${order.id}")transitions:approved: process_paymentrejected: notify_user- name: process_paymentrun: stripe.charge(order.total)on_failure: retry(max: 2)- name: notify_userrequires_approval: truerun: email.send(order.receipt)
How Orkestra compares
A straightforward comparison against the alternatives.
Orkestra
- Git-native✓
- Event-driven✓
- Deterministic✓
- Zero infra✓
- Local-first✓
- Open source✓
Temporal
- Git-native—
- Event-driven✓
- Deterministic✓
- Zero infra—
- Local-first—
- Open source✓
Airflow
- Git-native—
- Event-driven△
- Deterministic—
- Zero infra—
- Local-first—
- Open source✓
Dagster
- Git-native—
- Event-driven—
- Deterministic△
- Zero infra—
- Local-first✓
- Open source✓
Trusted by engineering teams
Design partners • 4,200+ GitHub stars • Active Discord