Hand a list of project goals to an autonomous crew of agents that builds and ships features unattended.
Get high risk code changes reviewed by a panel of four separate specialist reviewers before merge.
Automatically fix failing CI tests by having an agent read the actual failure logs.
Run several parallel feature builds at once, each in its own isolated workspace.
| buagi/ace | dcarrero/awesome-code-review-prompts | eburgueno/chat-rk1 | |
|---|---|---|---|
| Stars | 8 | 8 | 8 |
| Language | Shell | Shell | Shell |
| Setup difficulty | hard | easy | hard |
| Complexity | — | — | 5/5 |
| Audience | developer | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Runs on Fedora Silverblue or Arch Linux with user-local tools and requires an API key from Claude or DeepSeek.
ACE, short for Agentic Coding Environment, is a command line tool that installs a crew of twelve AI agents meant to build software on your behalf with very little supervision. You write down your goals in a file, run one command, and the crew plans the work, writes the code, tests it, reviews it, merges it, and deploys it on its own. One agent acts as the orchestrator, breaking your goals into small tasks and handing them out, but never writing code itself. Another agent, the implementer, actually builds each task. A verifier agent runs the project's tests and checks that the code matches what was claimed. Depending on how risky a change looks, either a single reviewer approves it or a full panel of four separate reviewers checks it from different angles, covering correctness, user experience, coding standards, and whether the change fits the project's overall direction. A change only gets committed once the verifier passes and the relevant reviewers approve, and the tool itself merges the result rather than letting an agent merge its own work. To avoid making things up about your codebase, the system connects to a few external tools that ground it in real information: one that maps how code pieces connect to each other, one that tracks live symbol definitions, and one that pulls current library documentation. There is also a fully automatic mode that keeps a running list of goals and tasks, builds the next item, fixes failing tests by reading the actual error logs, merges when everything passes, and deploys before picking up the next task. The crew of specialist agents runs on DeepSeek, a lower cost AI model, while the main overseer agent defaults to Claude Opus but can be swapped out, and the whole system can run using only a DeepSeek API key if you prefer to avoid a Claude subscription. It is built to run on Linux systems such as Fedora Silverblue or Arch, without needing root access.
A twelve agent AI crew that plans, builds, tests, reviews, and deploys code changes on its own from a list of goals you write down.
Mainly Shell. The stack also includes Shell, OpenCode, DeepSeek.
Setup difficulty is rated hard, with roughly 1h+ to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Don't trust strangers blindly. Verify against the repo.