EveryDev.ai
Subscribe
Home
Tools

2,885+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents1815
  • Coding1295
  • Infrastructure600
  • Marketing467
  • Projects433
  • Research403
  • Analytics351
  • Design338
  • Security243
  • MCP242
  • Testing238
  • Data230
  • Integration178
  • Prompts160
  • Learning159
  • Communication154
  • Extensions150
  • Voice130
  • Commerce125
  • DevOps108
  • Web80
  • Finance21
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Bernstein
    Bernstein icon

    Bernstein

    Multi-agent Systems

    Deterministic Python scheduler that orchestrates multiple CLI coding agents in parallel git worktrees, with an HMAC-signed audit chain and lint/type/test merge gates.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Free to use, modify, and distribute under Apache License 2.0. Install via pipx, pip, uv, Homebrew, Docker, or one-liner scripts.

    Engagement

    Available On

    Windows
    macOS
    Linux
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Multi-agent SystemsAI Coding AssistantsAgent Frameworks

    Alternatives

    Google Antigravityoh-my-codexMOSAICO
    Developer
    Alex Chernysh / Sip Your Drink LtdTel Aviv, IsraelEst. 2024

    Listed Jun 2026

    About Bernstein

    Bernstein is an open-source, Apache 2.0-licensed Python tool built by Alex Chernysh that runs a crew of CLI coding agents—Claude Code, Codex, Gemini CLI, and 40+ more—against a single goal in parallel git worktrees. The scheduler itself contains no LLM; every routing and merge decision is deterministic Python, replayable from an HMAC-SHA256-chained audit log. As of v2.7.0 (May 2026), the project reports over 157,000 installs and 577 GitHub stars.

    What It Is

    Bernstein sits in the multi-agent orchestration category, specifically targeting CLI coding agents rather than generic LLM workflows. You give it a goal; it decomposes that goal into tasks (one LLM call), spawns each task into an isolated git worktree, runs agents in parallel, then gates every merge on lint, type checks, and tests. Only verified diffs land in main. The orchestrator is plain Python—no LLM tokens spent on scheduling, no SaaS hop, no third-party data plane.

    Four-Stage Pipeline

    Every Bernstein run follows the same four stages:

    • Decompose — the manager breaks the goal into tasks with roles, owned files, and completion signals via a single LLM call.
    • Spawn — each task gets its own isolated git worktree; agents run in parallel without touching each other's branches.
    • Verify — the janitor checks concrete signals: tests pass, files exist, lint clean, types correct.
    • Merge — only verified diffs land in main; failed tasks are retried or routed to a different model via an epsilon-greedy contextual bandit.

    Audit and Security Architecture

    The audit surface is a core design goal. Bernstein writes one HMAC-SHA256 record per scheduling decision to .sdd/audit/YYYY-MM-DD.jsonl per RFC 2104; each entry references the previous hash, making tampering detectable. Signed agent cards use detached JWS (RFC 7515) over RFC 8785 canonicalization with Ed25519 keys. Per-artefact lineage records every file write linked back to producer, inputs, prompt SHA, model, and cost. The project maps these controls to EU AI Act Article 12, SOC 2 CC4/CC7, DORA/NIS2, and OWASP ASI06—described as mappings, not certifications.

    Adapter Coverage and Deployment Flexibility

    The project ships 46 CLI adapters (as of the homepage stat), including Claude Code, Codex CLI, Gemini CLI, GitHub Copilot CLI, Cursor, Aider, Devin Terminal, OpenHands, Plandex, AWS Q Developer, Ollama+Aider, and a generic --prompt wrapper for any CLI tool. Deployment targets include a local laptop, on-prem behind a firewall, Cloudflare Workers (via bernstein cloud), Kubernetes multi-node clusters, and air-gapped environments installable from a signed wheelhouse with --profile airgap. Sandbox backends are pluggable: git worktree, Docker, E2B microVMs, and Modal.

    Update: v2.7.0 and the 2.x Series

    The latest release is v2.7.0, published May 24, 2026. A May 2026 blog recap of the 2.x series describes thirteen releases consolidated into nine themes: a per-artefact transparency log with Ed25519 signatures, ten tracker adapters (Jira to Plane), A2A capability cards, MCP client and server hardening, a Playwright sandbox for UI agents, a secrets broker, SBOM and OSSF Scorecard supply-chain coverage, calibrated cost guards, and a web UI plus PWA shipped in the wheel. The web UI (bernstein gui serve) runs at http://127.0.0.1:8052/ui/ with a Vite bundle committed to the wheel so no Node toolchain is required at runtime. The project also ships a VS Code extension on the VS Marketplace and Open VSX.

    Who It Is and Is Not For

    The README explicitly scopes the audience: engineering teams running three or more CLI coding agents in parallel, operators with compliance-sensitive workflows who need a tamper-evident audit log without a SaaS data plane, and platform teams that need per-decision auditability. It explicitly excludes single-agent pair-programming use cases, non-coding tasks (research, writing, data pipelines), teams that want a SaaS wrapper, and research-style emergent-collaboration scenarios where the deterministic scheduler would be a constraint rather than a feature.

    Bernstein - 1

    Community Discussions

    Be the first to start a conversation about Bernstein

    Share your experience with Bernstein, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Free to use, modify, and distribute under Apache License 2.0. Install via pipx, pip, uv, Homebrew, Docker, or one-liner scripts.

    • 46 CLI agent adapters
    • Parallel git worktree execution
    • HMAC-SHA256 audit chain
    • Lint, type, and test merge gates
    • Web UI (bernstein gui serve)

    Capabilities

    Key Features

    • 46 CLI agent adapters (Claude Code, Codex, Gemini CLI, Aider, and 40+ more)
    • Parallel execution in isolated git worktrees
    • Deterministic Python scheduler — no LLM in the coordination loop
    • HMAC-SHA256 chained audit log per RFC 2104
    • Signed agent cards with Ed25519/EdDSA keys (RFC 7515, RFC 8785)
    • Per-artefact lineage records (producer, inputs, prompt SHA, model, cost)
    • Lint, type check, and test merge gates via janitor
    • Epsilon-greedy contextual bandit for model routing and cost optimization
    • YAML workflow manifests with DAG support
    • Web UI (bernstein gui serve) with PWA, shipped in the wheel
    • Cloudflare Workers cloud execution backend
    • Air-gap deployment with signed wheelhouse and --profile airgap
    • Pluggable sandbox backends: worktree, Docker, E2B, Modal
    • Pluggable artifact sinks: local, S3, GCS, Azure Blob, R2
    • MCP server mode
    • Bearer-token task server with per-session zero-trust JWT
    • 10 tracker adapters (Jira, Linear, GitHub Issues, Plane, and more)
    • bernstein autofix daemon for CI failure remediation
    • Chat-driven runs via Telegram, Discord, Slack
    • VS Code extension (VS Marketplace and Open VSX)

    Integrations

    Claude Code (Anthropic)
    Codex CLI (OpenAI)
    Gemini CLI (Google)
    GitHub Copilot CLI
    Cursor
    Aider
    Devin Terminal (Cognition)
    Amp (Sourcegraph)
    Cody (Sourcegraph)
    Continue
    Goose (Block)
    OpenHands
    Open Interpreter
    Plandex
    AWS Q Developer
    Ollama
    Junie (JetBrains)
    Kilo
    Kiro
    OpenCode
    Qwen Code
    AIChat
    Letta Code
    gptme
    Cloudflare Workers
    Cloudflare Durable Objects
    Cloudflare R2
    Cloudflare D1
    Docker
    E2B
    Modal
    Kubernetes
    S3 (boto3)
    Google Cloud Storage
    Azure Blob Storage
    Jira
    Linear
    GitHub Issues
    Plane
    Playwright
    OpenTelemetry (OTEL)
    Datadog
    Splunk
    Terraform
    Pulumi
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Bernstein and help others make informed decisions.

    Developer

    Alex Chernysh / Sip Your Drink Ltd

    Alex Chernysh builds Bernstein, an open-source deterministic multi-agent orchestrator for CLI coding agents, under the Sip Your Drink Ltd organization. The project ships 46 CLI adapters, an HMAC-chained audit log, signed agent cards, and air-gap deployment support under Apache 2.0. Chernysh operates as a solo maintainer and publishes engineering field notes monthly at bernstein.run/blog.

    Founded 2024
    Tel Aviv, Israel
    1 employees

    Used by

    Individual tech professionals
    Teams implementing Bernstein for agent…
    Read more about Alex Chernysh / Sip Your Drink Ltd
    WebsiteGitHubX / Twitter
    1 tool in directory

    Similar Tools

    Google Antigravity icon

    Google Antigravity

    Google Antigravity is an agentic development platform that lets developers build, orchestrate, and manage multiple local AI agents in parallel across coding, research, and automation tasks.

    oh-my-codex icon

    oh-my-codex

    A workflow and multi-agent orchestration layer for OpenAI Codex CLI that adds staged pipelines, parallel team execution, persistent memory, and extensible hooks.

    MOSAICO icon

    MOSAICO

    A Horizon Europe-funded research project developing a collaborative platform and AI-agent community framework to orchestrate multiple AI agents across the software development lifecycle.

    Browse all tools

    Related Topics

    Multi-agent Systems

    Platforms for creating and managing teams of AI agents that can collaborate.

    216 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    556 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    439 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions