Open-source SDLC harness beats Claude Code by up to 75% on cost in repo-localized tasks
NeighborhoodOwn8510 · reddit · 2026-07-27
What it does
AutoDev Studio is an open-source multi-agent SDLC harness that takes a Git repo and a plain-English change request, then runs a full software lifecycle: a PM agent clarifies the request, a Dev agent implements on an isolated branch, QA runs real tests, a different-model reviewer checks the diff, and the system opens a real PR for human merge.
Why the author says it is different
- Each stage can choose its own provider/model, so planning, coding, and review do not have to come from the same vendor.
- The coding stages can run through existing subscriptions like Claude Code, Codex, Cursor, Aider, or Gemini CLI, so there is no per-token billing or key juggling.
- The reviewer is intentionally from a different model family than the author, avoiding self-approval by the same model.
Results and limits
- In benchmarks on two Python repos of 35k and 82k lines, the tuned pipeline beat a cold single-agent run on 6/6 well-localized tasks, at 7% to 75% lower cost.
- It lost on trivial one-line greps, where the orchestration overhead can cost more than it saves.
- On one hard cross-cutting bug, it found a cheaper but narrower fix than the baseline.
The main implementation claim
The system says the code being edited comes from the current working copy: a deterministic symbol map is re-synced on each run, live grep is used, and embeddings only influence initial lookup, so the localization layer should not go stale after a few commits.
More from coding & agent
- Free PyTorch YouTube series covers deployment, mixed precision, and real projects — thetripathi58 · 2026-07-27
- AI-coded SaaS replacements break down once maintenance and on-call begin — cto_junior · 2026-07-27
- PrimeTask adds a local MCP server for ChatGPT and Claude to run work apps by chat — XVX109 · 2026-07-27
- Hermes power users get better results with memory, skills, and cron — tomcrawshaw01 · 2026-07-27
- A font-design skill has been built and open-sourced — JeremyNguyenPhD · 2026-07-27
- LLM skills can speed teams up, but they also add technical debt — srchvrs · 2026-07-27