EveryDev.ai
Sign inSubscribe
Home
Tools

2,810+ 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. Coop
    Coop icon

    Coop

    Agent Harness

    Run Claude, Codex, and Gemini coding agents on your real repos inside a secure container sandbox that hides secrets and prevents filesystem escapes.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT License. Self-hosted via a single static binary.

    Engagement

    Available On

    Windows
    macOS
    Linux
    API
    VS Code

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent HarnessAI Coding AssistantsAutonomous Systems

    Alternatives

    ctxPaseoAgent Deck
    Developer
    Andrew DrygaAustin, TXEst. 2016

    Listed Jun 2026

    About Coop

    Coop is an open-source CLI tool written in Go that runs AI coding agents — Claude, Codex, and Gemini — inside disposable containers so they can work autonomously on real repositories without access to your home directory, SSH keys, or other projects. Created by Andrew Dryga and released under the MIT License, it is available on GitHub and currently at version v2.5.2. The project grew out of two published write-ups: "Running an AI coding agent you can't trust" (the sandbox design) and "One brain, two agents" (the queue, hooks, and unattended foreman).

    What It Is

    Coop is a sandboxed agent harness for local AI coding agents. Its core job is to let you run agents with their most permissive autonomous flags (--dangerously-skip-permissions, --yolo) while keeping them confined to a single repository. The container mounts only the repo you're working on, shadows secrets by filename and content, and blocks access to the rest of your disk. A single static Go binary with no extra runtime dependencies drives the whole workflow — from launching an interactive agent session to running an unattended overnight task queue across a fleet of parallel forks.

    The Sandbox and Secret Shadowing

    The security model has two layers. First, the container boundary: only the target repo is bind-mounted at its real host path; the home directory, SSH keys, and other projects are simply absent from the container. Second, secret shadowing: .env, *.tfvars, *.pem, secrets/, .ssh, and similar paths are overlaid with empty tmpfs mounts or read-only empty files so the agent sees their shape but never their content. A .coopignore file (similar to .gitignore) extends the default denylist with repo-specific paths. The coop check-secrets command scans visible files for high-entropy values and provider token shapes (AWS, OpenAI, Anthropic, GitHub, Slack, and others) and exits non-zero on a hit, making it usable as a pre-flight or CI check. coop doctor proves isolation end-to-end by planting a fake secret, launching the box, and verifying from inside that the secret is unreachable.

    Workflow: Forks, Loops, and Fleets

    Beyond interactive sessions, Coop provides three higher-level workflow primitives:

    • Forks — throwaway local clones handed to an agent instead of your working tree. The lifecycle mirrors a contractor PR: coop fork <name> <agent> opens the fork, the agent works in it, coop fork review <name> shows a brief and diff, and coop fork merge <name> rebases onto your branch and fast-forwards. A configurable COOP_GATE command re-runs in the box on the rebased tree before landing.
    • The loop — coop loop works a TASKS.md checkbox queue unattended, starting a fresh agent per iteration to avoid context rot. When the queue empties, a fresh auditor re-checks every completed item against the git log and reopens anything that doesn't hold up. The loop also handles rate-limit resets automatically, reading the reset time from the agent's output and waiting it out.
    • Fleets — multiple forks running in parallel, each looping its own tasks file. coop fleet up starts them all detached; coop status shows a roll-up of progress, blockers, and current task per fork; coop fork merge --all lands them in a revalidating rebase queue.

    Fusion: A Governed Council of Models

    Coop includes a "Fusion" mode where one model acts as governor (does the real work and edits files) while the other two advise read-only in parallel. The governor synthesizes the strongest parts of all three responses before proceeding. The council is invoked with coop fusion [agent] and works in interactive, headless, and Zed ACP modes. A lighter --consult flag on any normal run gives the agent the option to poll its peers on genuinely hard or risky calls without the full synthesis mandate.

    Platform and Integration Support

    Coop auto-detects Apple container (macOS 26+), Docker, or Podman as the container runtime. It integrates with the Zed editor via the Agent Client Protocol (ACP): coop acp [claude|codex|gemini|fusion] runs the matching ACP adapter inside the box over stdio, letting Zed's agent panel drive the sandboxed agent while the box remains the security boundary. MCP servers are configured once in ~/.config/coop/agents/mcp.json and automatically wired into all three agents' native config formats. Per-project toolchains are provisioned from .tool-versions (asdf) at runtime or baked into a Dockerfile.agent for fully reproducible images.

    Update: v2.5.2

    The latest release is v2.5.2, published on 2026-06-17. The repository was created in June 2026 and has seen active development, with the last push on 2026-06-17. The project is MIT-licensed and distributed as a prebuilt static binary for multiple OS/arch combinations, with cosign/Sigstore keyless signature verification available for release artifacts.

    Coop - 1

    Community Discussions

    Be the first to start a conversation about Coop

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

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the MIT License. Self-hosted via a single static binary.

    • Sandboxed Claude, Codex, and Gemini agent execution
    • Secret shadowing and .coopignore support
    • Fork workflow with review and merge lifecycle
    • Unattended task queue loop
    • Fleet management with parallel forks

    Capabilities

    Key Features

    • Sandboxed container execution for Claude, Codex, and Gemini agents
    • Secret shadowing by filename and content (tmpfs overlays)
    • .coopignore support for repo-specific secret denylist
    • coop doctor end-to-end isolation verification
    • coop check-secrets content scanner for credentials in visible files
    • Fork workflow: throwaway repo clones with review and merge lifecycle
    • Unattended task queue loop with per-iteration fresh agent context
    • Fleet management: parallel forks each looping their own tasks file
    • Fusion mode: governed council of three models with synthesis
    • -consult flag for lightweight peer second opinions
    • Zed ACP integration for IDE-driven sandboxed agents
    • MCP server config wired once to all three agents
    • Per-project toolchain provisioning from .tool-versions (asdf)
    • Dockerfile.agent support for fully reproducible per-project images
    • COOP_GATE pre-merge gate command with rollback on failure
    • Rate-limit-aware loop with automatic reset wait
    • coop fork merge --all revalidating rebase queue for fleets
    • Single static Go binary, no extra runtime dependencies
    • Cosign/Sigstore keyless signature verification for release artifacts
    • Compose-based sibling services (Postgres, Redis) with coop up/down

    Integrations

    Claude (Anthropic)
    Codex (OpenAI)
    Gemini (Google)
    Zed editor (ACP)
    Docker
    Podman
    Apple container (macOS 26+)
    MCP servers
    asdf / .tool-versions
    Docker Compose
    cosign / Sigstore
    git
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

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

    Developer

    Andrew Dryga

    Andrew Dryga builds open-source developer tooling focused on safe, autonomous AI coding workflows. Coop, his primary project, provides a sandboxed harness for running Claude, Codex, and Gemini agents on real repositories without exposing secrets or the broader filesystem. The project is written in Go and distributed as a single static binary under the MIT License.

    Founded 2016
    Austin, TX
    1 employees

    Used by

    National Health Service of Ukraine
    Hammer Corp
    Firezone
    Contractbook
    +2 more
    Read more about Andrew Dryga
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    ctx icon

    ctx

    An Agentic Development Environment (ADE) that unifies multiple coding agents like Claude Code, Codex, and Cursor in one interface with containerized workspaces and unified review.

    Paseo icon

    Paseo

    Orchestrate coding agents from your desktop, phone, terminal, or browser. Self-hosted, multi-provider, and open source.

    Agent Deck icon

    Agent Deck

    A terminal TUI command center for managing multiple AI coding agent sessions (Claude, Gemini, Codex, and more) with session forking, MCP management, and conductor orchestration.

    Browse all tools

    Related Topics

    Agent Harness

    Infrastructure, orchestrators, and task runners that wrap around LLM coding agents — covering session management, context delivery, worktree isolation, architecture enforcement, and issue-to-PR pipelines.

    98 tools

    AI Coding Assistants

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

    543 tools

    Autonomous Systems

    AI agents that can perform complex tasks with minimal human guidance.

    280 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussion