Open-source SDLC harness cuts Claude Code bug-fixing costs by up to 75% on large repos
NeighborhoodOwn8510 · reddit · 2026-07-26
What it does
AutoDev Studio is an open-source SDLC harness that takes a Git repo and a plain-English change request, then runs a multi-agent pipeline: clarify requirements, human approval, implementation on an isolated branch, real test execution, cross-family review, bounded repair loops, and finally a pull request for human merge.
Reported results
The author benchmarked it on two large Python repos, around 35k and 82k LOC. On six well-localized tasks, the tuned pipeline beat a cold single-agent Claude Code run every time, coming in 7% to 75% cheaper. One example: a cold Claude Code run spent $6.83 and 207 turns hunting a bug in an 82k-line repo, while AutoDev Studio fixed the same bug for about $1.70.
Where it loses
The author is explicit that the approach is not always cheaper:
- On trivially greppable one-line edits, the five-stage overhead can cost more than it saves.
- On one hard cross-cutting bug, it produced a cheaper but narrower fix.
How it avoids staleness
The retrieval layer is not just a vector index. It uses a deterministic symbol map synced to the latest commit at run start, plus live grep against the current working tree and the current file contents in the prompt. Embeddings only affect ranking and are refreshed incrementally per changed module.
Other details
- Model/provider agnostic per stage, including Anthropic, Claude Code CLI, OpenAI-compatible endpoints, Groq, Gemini, xAI, OpenRouter, and local Ollama
- Can run on free tiers with Groq plus a local embedding model
- Language-agnostic, with Python parsed exactly and other languages handled by lighter extractors
- Tracks real per-ticket cost, tokens, and duration
- MIT licensed, local-first, with encrypted API keys and demo mode for dry-running PRs
Related event: AutoDev Studio claims up to 75% lower cost with multi-agent SDLC(6 posts)→
More from coding & agent
- theo builds his own visualizer for today's agent models, showing how cheap Luna really is — ivan_bezdomny · 2026-09-23
- Vite+ Hits RC: One Rust-Powered CLI to Replace Your Entire Web Toolchain — cnakazawa · 2026-09-23
- Tesla's in-car Grok agent books trips across Gmail, Calendar and Notion in one command — xiaohu · 2026-09-23
- Tesla's In-Car Grok Assistant Now Executes Cross-App Tasks in One Sentence — xiaohu · 2026-09-23
- Garry Tan says Capy lets him ship PRs much faster than Codex or Claude Code — garrytan · 2026-09-23
- DeskPilot: open-source native Python desktop client for local LLMs with MCP and sandboxed tools — poofph · 2026-09-23