Orchestration you can reason about.
Zenvara is an AI-native automation platform. You describe pipelines in YAML; Zenvara compiles them to a typed graph, runs them on schedule, logs every step, and rolls them back if something breaks partway through. It serves three jobs organisations usually buy three platforms for:
- Data integration — ETL, joins, change detection.
- Service integration — HTTP, SOAP/WSDL, GraphQL, SFTP, S3, Kafka, SQL and NoSQL databases.
- AI workflows — Claude, ChatGPT, and Gemini as native, typed pipeline steps.
It ships as a single self-contained binary — the .NET runtime is embedded. No JVM, no Python runtime, no cluster required.
This repository does not contain Zenvara's source code. Zenvara is a proprietary product. This repo is the public home for:
- 📦 Releases — download the latest binaries from the Releases tab.
- 🐞 Issues — report bugs and track fixes in Issues.
- 💬 Discussions — ask questions and share patterns in Discussions.
Binaries come from the latest release; every asset ships a .sha256 file — verify it before installing. Once running, open localhost:5000/studio — the built-in Studio IDE.
docker run -d --name zenvara -p 5000:5000 -v zenvara-data:/data zenvara/server:latestDownload zenvara-linux-x64.tar.gz (or -arm64), then:
mkdir -p ~/zenvara
tar xzf zenvara-linux-x64.tar.gz -C ~/zenvara
~/zenvara/Zenvara.AppDownload zenvara-win-x64.zip, then:
Expand-Archive zenvara-win-x64.zip -DestinationPath C:\Zenvara
C:\Zenvara\Zenvara.App.exeDownload zenvara-osx-arm64.tar.gz (Apple Silicon) or zenvara-osx-x64.tar.gz (Intel), then:
mkdir -p ~/zenvara
tar xzf zenvara-osx-arm64.tar.gz -C ~/zenvara
xattr -dr com.apple.quarantine ~/zenvara # clear Gatekeeper quarantine
~/zenvara/Zenvara.AppFor more information, refer to the official documentation site.
The full guide — channel selection, required facts, format, redaction — is in CONTRIBUTING.md. The short version:
- Check the docs and the troubleshooting guide.
- Search existing issues to avoid duplicates.
- File with the facts listed in CONTRIBUTING.md — version, deployment target, logs.
⚠️ Security issues: please do not open a public issue for suspected vulnerabilities. Email security@zenvara.ai instead. See SECURITY.md.
Zenvara is commercial, proprietary software. © Zenvara. All rights reserved. Use is governed by your license agreement; binaries published here are distributed under those terms. See LICENSE.md.