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

✍️ OpenClawRadar📅 Published: June 5, 2026🔗 Source
ACO System: Multi-Agent AI Pipeline from GitHub Issue to Merged PR
Ad

ACO System is a multi-agent framework that automates the full software development pipeline from GitHub Issue to merged pull request. It uses six specialized AI agents working independently through a shared database — no agent-to-agent communication, no dropped context.

Pipeline Overview

  • PM Agent writes the user story from an issue.
  • Planner Agent breaks the story into tasks with estimates.
  • Architect Agent validates feasibility with a deterministic gate (no LLM, no hallucination risk).
  • Developer Agent creates a branch, writes code, and opens a PR.
  • QA Agent reviews the PR and runs tests.
  • Human gives final sign-off before merge.

Key Design Decisions

Unlike LangChain, AutoGen, or CrewAI, the agents do not talk to each other. They all read and write through a shared database. Each agent runs independently. Complexity stays in the schema, not the logic.

Ad

Deterministic Architect Gate

The Architect gate is the feature the author is most proud of: it scans for hardcoded secrets, missing acceptance criteria, and invalid tech stack config. If anything fails, the story never reaches a developer — zero bad PRs.

Tech Stack

  • Backend: Python
  • Frontend: Next.js
  • Database: SQLite in dev, Postgres in prod
  • UI: Live Kanban dashboard and streaming event feed to watch agents in real time

Who It's For

Developers building in the agentic tooling space who want a practical, no‑babysitting pipeline that produces real artifacts.

The project is open source on GitHub: github.com/aniketkarne/aco-system

📖 Read the full source: r/openclaw

Ad

👀 See Also

Claude IDE Bridge: MCP Tool for Remote Editor Access
Tools

Claude IDE Bridge: MCP Tool for Remote Editor Access

Claude IDE Bridge is an open-source tool that provides Claude AI with remote control access to code editors via MCP (Model Context Protocol). It exposes editor knowledge like live type information and debugger state as callable tools.

OpenClawRadar
Pixel Agents: 24 Specialized Claude Agents for Code, Site, and Resume Reviews
Tools

Pixel Agents: 24 Specialized Claude Agents for Code, Site, and Resume Reviews

Pixel Agents is a collection of 24 task-specific AI agents built on Claude Sonnet 4.6 API, each with tuned personalities and structured JSON output. The system includes code review, site analysis, resume critique, and startup evaluation agents that provide direct feedback.

OpenClawRadar
Tendr Skill: Deterministic CLI Operations for Agent Memory Management
Tools

Tendr Skill: Deterministic CLI Operations for Agent Memory Management

Tendr Skill is an Agent Skill that separates reasoning from execution for structured long-term memory, allowing agents to decide what needs changing while a CLI tool handles structural operations deterministically. It supports [[wikilinks]] and explicit semantic hierarchies across files.

OpenClawRadar
Altimate Code: Open-Source Agentic Data Engineering Harness
Tools

Altimate Code: Open-Source Agentic Data Engineering Harness

Altimate Code is an open-source harness that provides deterministic data engineering tools for AI agents, addressing issues like hallucinated SQL and missing schema context. It includes column-level lineage, SQL anti-pattern detection, and dbt integration, with benchmarks showing 74.4% performance on ADE-bench.

OpenClawRadar