by covibes
Your autonomous engineering team in a CLI. Point Zeroshot at an issue, walk away, and return to production-grade code. Supports Claude Code, OpenAI Codex, OpenCode, and Gemini CLI.
# Add to your Claude Code skills
git clone https://github.com/covibes/zeroshot<!-- install-placeholder --> <p align="center"> <code>npm install -g @covibes/zeroshot</code> </p> <p align="center"> <img src="./docs/assets/zeroshot-demo.gif" alt="Demo" width="700"> <br> <em>Demo (100x speed, 90-minute run, 5 iterations to approval)</em> </p> <!-- discord-placeholder -->🎉 New in v5.4: Now supports OpenCode CLI! Use Claude, Codex, Gemini, or OpenCode as your AI provider. Also supports GitHub, GitLab, Jira, and Azure DevOps as issue backends. See Providers and Multi-Platform Issue Support.
Zeroshot is an open-source AI coding agent orchestration CLI that runs multi-agent workflows to autonomously implement, review, test, and verify code changes.
It runs a planner, an implementer, and independent validators in isolated environments, looping until changes are verified or rejected with actionable, reproducible failures.
Built for tasks where correctness matters more than speed.
zeroshot run 123 # GitHub issue number
zeroshot run feature.md # Markdown file
zeroshot run "Add dark mode" # Inline text
Or describe a complex task inline:
zeroshot run "Add optimistic locking with automatic retry: when updating a user,
retry with exponential backoff up to 3 times, merge non-conflicting field changes,
and surface conflicts with details. Handle the ABA problem where version goes A->B->A."
| Approach | Writes Code | Runs Tests | Blind Validation | Iterates Until Verified | | -------------------------- | ----------- | ---------- | ---------------- | ----------------------- | | Chat-based assistant | ✅ | ⚠️ | ❌ | ❌ | | Single coding agent | ✅ | ⚠️ | ❌ | ⚠️ | | Zeroshot (multi-agent) | ✅ | ✅ | ✅ ...