ACO System: Open-Source Multi-Agent Pipeline from GitHub Issue to Merged PR

ACO System is an open-source multi-agent framework that runs the entire software development pipeline autonomously — from a GitHub Issue to a merged PR — using six specialized AI agents. Built by Aniket Karne, it's designed to eliminate context loss and handoff overhead typical in human-only development workflows.
Unlike LangChain, AutoGen, or CrewAI, ACO's agents do not communicate with each other directly. Instead, each agent reads from and writes to a shared database. Complexity lives in the schema, not in inter-agent logic. The pipeline runs with SQLite in development and Postgres in production, and ships with a live Kanban dashboard and streaming event feed for real-time agent observation.
Pipeline Stages
- PM agent writes the user story from a given idea.
- Planner agent breaks the story into tasks with estimates.
- Architect agent (hard gate) validates feasibility without using an LLM — it scans for hardcoded secrets, missing acceptance criteria, and invalid tech stack configuration. If the story fails, it never reaches a developer.
- Developer agent creates a branch and opens a PR.
- QA agent reviews the code and runs tests.
- Human gives final sign-off before merge.
The Architect gate is deterministic, not probabilistic. It enforces a hard set of rules: no hardcoded secrets, acceptance criteria must be complete, and tech stack must be consistent. This prevents hallucinated or unworkable PRs from ever being generated.
Why It's Different
Agents run independently via a shared database, not through agent-to-agent messages. This design keeps each agent simple and the overall system predictable. The framework is built in Python with a Next.js frontend for the dashboard.
Getting Started
The project is open source on GitHub. Clone the repo, run with SQLite locally, and connect to Postgres for production. The Kanban dashboard and event stream are live by default.
Who It's For
Dev teams building agentic CI/CD pipelines, researchers exploring multi-agent architectures, and anyone tired of context loss between handoffs.
📖 Read the full source: r/openclaw
👀 See Also

Karpathy Coding Skill Rewritten for Free Plan, Unlocks Claude Coding Discipline Without Pro
A Reddit user rewrote Karpathy's coding discipline guidelines for Claude's free plan, removing terminal and subagent dependencies. The system prompt auto-triggers on coding requests and enforces verification-first thinking.

cldctrl: Terminal Dashboard for Managing Claude Code Sessions
cldctrl is an npm package that provides a terminal dashboard for launching and managing Claude Code sessions across projects. It reads existing ~/.claude data, auto-discovers projects, and shows token usage with rate limit bars.

Claudebin: Export and Share Your Claude Code Sessions
Claudebin allows you to export entire Claude Code sessions, making them shareable and resumable through a single URL.

Custom GIF Spinner for Claude Code via COLR Font Conversion
A developer created a method to replace Claude Code's default spinner with any animated GIF by converting the GIF into an OpenType COLR color font and patching the spinner to cycle through glyphs representing each frame. The tool currently supports Windows with macOS/Linux versions planned.