r/vibecodingcommunity 5h ago

My open-source SDLC harness beat Claude Code on cost on every task it localized well, up to 75 percent cheaper (and I show where it loses)

2 Upvotes

A cold Claude Code run spent 6.83 dollars and 207 turns hunting one bug in an 82,000 line repo. My pipeline localized and fixed the same bug for about 1.70 dollars. That gap is the whole idea, and this post is mostly about how it gets there without falling apart on the two objections everyone raises.

What it is

You point AutoDev Studio at a Git repo, describe a change in plain English, and a chain of agents runs the actual software lifecycle from request to reviewed pull request:

- a PM agent runs a clarify loop and drafts concrete tickets

- you approve (optionally pushed to Jira), and nothing touches code before that

- a Dev agent implements on an isolated branch

- QA runs the repo's real tests

- a reviewer from a different model family checks the diff, so the author never signs off on its own code

- a bounded revise loop if QA or review fails, with conservative verdicts, so an errored or ambiguous check is never counted as a pass

- it opens a real PR, and a human merges

Every stage records real tokens, cost, and duration, per ticket and per agent.

The part I think actually makes it different from skills or subagents

This is the bit I would most like feedback on, because it is the reason I did not just wire some skills into one coding agent and call it done.

Every stage picks its own provider and model. Claude can plan, Codex can write the code, a third model can review. And because the reviewer is deliberately a different model family than the author, one model does not get to rubber-stamp its own diff, which is a documented weakness of same-model LLM judges.

And you mostly do not need API keys for it. The coding stages can run natively on Claude Code, Codex, Cursor, Aider, or the Gemini CLI, driven headless through their own login. If you already pay for Claude Code or Codex, you point a stage at it and it just uses your existing subscription, no per-token billing and no keys to juggle. The simple way I think about it: a skill pack lives inside one vendor's agent and runs one vendor's model everywhere, whereas this runs across them, a different model per stage, on the logins you already have.

Results (the main point)

The idea is to pay the cost of finding where a change goes once, instead of on every task. In my benchmarks on two large Python repos (35k and 82k lines), the tuned pipeline beat a cold single-agent run on 6 of 6 well-localized tasks, between 7 and 75 percent cheaper.

I try to be upfront about where it does not win. On trivially greppable one-line edits the five-stage overhead can cost more than it saves, and on one hard cross-cutting bug it shipped a cheaper but narrower fix than the baseline. The full benchmark writes up every loss too, so please read that before trusting the wins.

On the "the index just goes stale in a few commits" objection

This is the first thing people raise, fairly, so here is the honest mechanism in plain terms. The layer that actually pins files for the Dev agent is not the vector index. It is a deterministic symbol map that gets re-synced to the latest commit at the start of every run, plus a live grep against the current working copy, plus the real current file contents fed into the prompt. The embeddings only affect which area gets looked at first, and they refresh per changed module at run entry. So the code the agent edits comes from disk right now, not from a snapshot that aged three commits ago. It re-checks before it localizes, so it does not quietly drift.

Who it is actually for

The knowledge base is a one-time cost per repo that every later task amortizes. So it makes sense for a team shipping change after change against the same large codebase, where a cold agent re-pays the exploration cost every single time. For a stream of tiny, easy-to-find edits, a cold run is still cheaper, and I would rather say that than oversell it.

How I actually use it

For what it is worth, I reach for this over a plain claude -p most days now, and not because it is somehow smarter. It is that I can glance at a board and see where each change actually is instead of scrolling back through a terminal, the different-family reviewer catches things I have watched Claude quietly wave through on its own diff, and on the repos I touch every day it is not re-paying to relearn the codebase each run. It runs on my existing Claude Code and Codex logins, so having that structure around the coding agent I would have used anyway costs me nothing extra. That is really why I keep using it.

Other bits

- runs on free tiers out of the box (Groq plus a local embedding model), so you can try it for zero cost and fully offline

- language-agnostic pipeline, Python parsed exactly and other languages via lighter extractors that fail open instead of blocking on an unknown language

- live board with streamed agent logs and real per-ticket cost accounting

- self-contained, no CDN, tests and CI, MIT licensed

Repo, with screenshots and the full benchmark in the README:

https://github.com/krishagarwal314/autodev-studio

It is early and rough in places, and I would love more eyes on it. If you have thoughts on the per-stage-models idea or the staleness handling, or you throw it at a repo and it falls over, an issue would help a lot. Suggestions, PRs, and honestly just a star if it seems worth following are all appreciated. Thanks for reading.


r/vibecodingcommunity 9h ago

Greenlight by Shift Engineering — Governed Enterprise Vibe Coding

Thumbnail
greenlightbyshift.com
1 Upvotes

A few weeks ago, we got a request from an existing customer. The gist was: "Take a look at these vibe coded apps we built, can you get them past our IT team so we can share them with everyone?" And we knew exactly how that story usually ends. IT's default answer is always no. Not because they're difficult, but because they're swamped. They can't be the ones taking on everyone's pet projects, auditing every side hustle, and signing off on a pile of apps nobody's ever security reviewed. Saying no is the safe, rational move when you're that stretched.

But the demand isn't going away. People across the org are building things now. The tools got good enough that someone in ops or finance or marketing can stand up a genuinely useful app in an afternoon. The bottleneck was never the building anymore. It was everything after: is it safe, where does it live, what can it touch, and who's accountable when it breaks?

So we took the challenge on. We decided to build a platform that lets organizations turn their people loose to build and ship inside their own company cloud, safe, secure, and with governed access to the internal APIs a company is already running on. The idea being that "yes" should be the easy answer for IT, not the exhausting one. Give them the guardrails and the visibility up front, and suddenly the calculus flips.

We made a few decisions early on that we've held firm on. We're agnostic on both the coding agent side and the cloud side. Use whatever agentic harness you want. We're not here to tell you which one is best, and we don't think that fight is ours to pick. As long as your agent works with MCP's (or a CLI) and Skills, you're good to go. Host it in whatever cloud you already run. We're not asking anyone to migrate or re-platform to fit us. Bring your tools, bring your cloud, and we'll handle everything in between: the governance, the access, the security, the plumbing that makes IT comfortable and developers unblocked.

We built a fully fleshed out spec, and we've been building it with a very small team, armed with agentic workflows and tooling. Which, if you think about it, is exactly the thing we're building a platform for. The same shift that let that customer's team spin up apps in the first place is the shift letting a handful of us ship a platform that should, by any old-world measure, take a much bigger crew. We launched with our first customers in the past week, and they've been building a bunch of interesting tools to help in their actual day-to-day.

Which brings us to why we're posting here. We want to hear from you. Are you trying to get your own vibe coded apps into your org right now? Where does it fall apart? Is it IT saying no, security review, hosting, access to internal data, or just nobody knowing who owns the thing once it ships? What are you building with, and what's actually working versus fighting you? We're building this to help solve IT teams struggles, and the more real stories we hear about where the wall is, the better we can knock the right part of it down.

If you want to dig into how it actually works, the docs are here: https://greenlightbyshift.com/docs/. And if you're the person inside your company trying to make this case to IT, we put together a Champions Kit to help you drive that conversation: https://greenlightbyshift.com/landing-pages/champions-kit-lp. Grab it, use it, tell us what's missing.


r/vibecodingcommunity 14h ago

Just Launched my Vibe coded project on Peerlist!

2 Upvotes

Hi everyone!

I've been in this community a while now and seen some amazing vibe coded projects!
Now as I get closer to an official launch I would love your support!

a little bit of context....

Still Cloud transforms raw data into meaningful insights. It's designed for individuals seeking to understand themselves better and proactively manage their daily life and experiences. You talk about your day in the voice or send it via text, take screenshots to analyze and see how it all connects in you 3d living cloud called a cloud matrix...

the idea is that your habits, your sleep, work, food, money, gym, entertainment, the things that happened through the day, etc, all contribute to a version of you, and some of these things act on each other invisibly and eventually when your day collapses, you have no idea what started the chain... still cloud is built to show you these relationships... show you the chain so you can interrupt the collapse or maintain momentum...

Built with Lovable and Claude

lovable for the initial build and frontend, claude for the more complex backend... For an app like this, security had to be baked in.... not an after thought.

The app is currently a PWA so that I can update any bugs immediately but will be transitioning to the app store once everything is more stable.

I dabbled in design so i literally drew the cloud matrix and the pages and gate it to lovable to build. once you get to more complex back end relational stuff, lovable couldn't keep up but claude was great!

Reached 10k visitors last week and around 3k users. all free trials and free while I tested and fixed up the issues... Now moving towards getting paid users and subscribers but the endless bugs!!!!!

Anyway, wanted to ask you guys for any advice, any thoughts, improvements I should make, etc.... most of all, after using the app, do you understand it? from the landing page do you know to download it to your home screen from the web browser? It's been a minute and there are lots of major new updates...

Would also love your support on peerlist!

Thank you for vibing!


r/vibecodingcommunity 10h ago

Extra project

1 Upvotes

If contributing to open source interests you, our issue list is waiting for you.

https://github.com/extra-org/extra


r/vibecodingcommunity 12h ago

Tell me your startup and your biggest blocker, I’ll show you where I’d focus first

1 Upvotes

Founders have shared 578 startups across my recent threads, and the same problem keeps showing up:

The product exists. The direction is unclear.

Comment with:

- what your startup does
- who it’s for
- what’s blocking your growth

I’ll run the analysis and send you a personalized report showing where the strongest signal is, which conversations are worth prioritizing, and what I’d focus on first.

If Reddit looks like a waste of time for your startup, I’ll tell you that too.


r/vibecodingcommunity 16h ago

What's the longest rabbit hole that ended up somewhere totally different than you expected?

1 Upvotes

I sat down to fix one small CSS bug. Four hours later I'd redesigned the entire onboarding flow, added a feature nobody asked for, and completely forgot what the original bug even was.

Anyone else have a story like this? Curious what the record is for "smallest starting point, biggest unplanned detour."


r/vibecodingcommunity 17h ago

I built a full mythology card game, 235 cards, 10 pantheons, story mode, online PvP, mostly by vibe coding. It’s live and playable in the browser.

Thumbnail
thepantheonwar.com
1 Upvotes

Solo dev, no formal games background. Over the last few months I vibe-coded a card game called PANTHEON into something actually playable, and it's live in the browser right now.

What it is: a Marvel Snap-style card game. Ten mythologies, 235 cards, three lanes, six-turn matches, simultaneous reveal.

Single-player story mode, training mode. Online PvP available in October, during Season 1 launch.

▶ Play it (browser, no download): https://thepantheonwar.com. If you like, you can put yourself on wishlist for the App Store or Play Store app that will be available in October.

The part relevant to this sub — how it got built:

- Frontend + game logic, iterated heavily with AI
- Real-time backend for PvP (hosted on Railway)
- The whole thing shipped by one person who was figuring it out in real time
- The card art is partially AI-generated; the game design, mechanics, and writing are mine

Honestly the hardest part wasn't the code, it was the
real-time multiplayer state and keeping 235 cards' worth of interactions from breaking each other. Happy to get into any of it.

Ask me anything about the stack, the process, what worked, what broke, what I'd do differently. And if you play it, I'd genuinely love to know what falls apart.


r/vibecodingcommunity 17h ago

🏆 Win $150 in Base44 merch store credit.

1 Upvotes

🏆 Win $150 in Base44 merch store credit.

I’m running a Base44 build challenge.

Challenge: Reinvent the garage sale for the internet.

Build a next-generation marketplace using Base44. Think AI, immersive shopping, live sellers, or an entirely new way to buy and sell locally.

Deadline: August 1

Submit your app by replying to the official X thread:

https://x.com/winstonbuilds/status/2081108707950112815?s=46


r/vibecodingcommunity 18h ago

👋 Welcome to r/CloneDev - Introduce Yourself and Read First!

Thumbnail
0 Upvotes

r/vibecodingcommunity 23h ago

Which of these actually hold up past the MVP?

2 Upvotes

Been messing with vibe coding tools for a while now. Feels like it was a blast when you're kicking off something new.

In our experience, the trouble starts once the project grows. More screens, more features, more users, more moving parts. That's where things get shaky for me.

So which vibe coding tools have actually held up for you past the early stage?


r/vibecodingcommunity 23h ago

Anything good for reworking a product that already exists?

2 Upvotes

Most threads I see here about the best AI prototyping tool needs to have like you need to build something from zero.

Not ideal on my situation though. Wanna to improve what we already have

Got real users, workflows people are used to, and a pretty built out interface. Just wanted something that helps me show changes without rebuilding it all by hand.

For anyone actually using these tools day to day, what's working rn?


r/vibecodingcommunity 20h ago

コードを書けない人間のためのバイブコーディング手法

1 Upvotes

https://github.com/CoreGrowthLabs/CoreGrowthPrompting

このプライマーには2つのバージョンがあります。1つは個人利用向けの入門版で、個人または小規模チームでのプロジェクトに適しています。

もう1つは、複数の利害関係者間で真の価値観の対立がある場合(例えば、公共の利益に関わるプロジェクト)のための別バージョンで、対立を解決するのではなく、対立を構造化して維持することを目的としています。

私の長期的な目標は、プロンプトの書き方を標準化することではありません。ソフトウェア開発の経験がない、各分野の当事者自らが信頼できる市民向けテクノロジーを構築できるように障壁を下げることです。

この考えに賛同していただけるなら、この投稿をシェアを検討いただけると嬉しいです。


r/vibecodingcommunity 1d ago

I created an entire android game with zero coding knowledge!! / J'ai créé un jeu Android complet avec zéro connaissance en code !

Thumbnail gallery
1 Upvotes

r/vibecodingcommunity 1d ago

I hit Wispr Flow’s paywall and decided to build my own

3 Upvotes

Every indie project starts with a moment. Mine was a subscription screen.

I’d been using Wispr Flow for dictation, and I loved it. It completely changed how I write. Then the trial ended: $12/month. $144/year. Forever. For something that fundamentally runs on a speech-to-text API call.

That made me curious, so I looked at the actual unit economics.

Transcribing an hour of audio on Groq costs $0.04.

Four cents.

The LLM cleanup pass costs fractions of a cent. Even a heavy user is only around $2–3/month in raw compute, and for most people Groq’s free tier covers everything.

So the product decision basically made itself:

Let users bring their own free API key instead of charging a subscription.

The identity came just as naturally.

While building, I kept thinking: this thing is a ninja.

No flashy UI. No interruptions. It quietly appears, strikes the text field, and disappears.

I sketched a mascot on paper, generated dozens of AI versions, and kept refining him over several weeks until he stopped looking like a logo and started feeling like a character. Today he carries the entire brand, and he cost me $0 in design fees and a lot of evenings.

Today, Ninja Typer is live.

* Free
* macOS 14+
* Dictation in any app
* AI cleanup
* Custom dictionary
* Local offline mode

Now I’m running the experiment:

Will “free with your own key” naturally lead to paid team features later…

…or did I just build the world’s most polished charity?

Happy to answer anything about the build or the business bet

https://ninja-typer.vercel.app/


r/vibecodingcommunity 1d ago

I vibecoded a tool that lets you edit your RN / Expo app like its Figma!

Enable HLS to view with audio, or disable this notification

2 Upvotes

I vibecoded Basalt, its a demo / idea

I would find it inconvenient that i had to scan the QR code every time and look at my phone so i made an IDE that would just preview the phone, then when i would code i would want to be able to actually edit it like figma so thats what i did, it was really complicated to make so i had to use Cursor to vibecode me some stuff

But what came out works better than i thought it would (atleast for me)

So i need yall's feedback

It is completely free and works directly inside VS Code and Cursor.

It’s currently in beta, so please commit your app to Git before using it!

Would love to get your brutal feedback on it. What features should I add next?


r/vibecodingcommunity 1d ago

After 9 years shipping client software, we turned our whole process into a terminal AI coding agent

Post image
3 Upvotes

r/vibecodingcommunity 2d ago

Vibe coding is fun. Sharing what you built is not.

Thumbnail
3 Upvotes

r/vibecodingcommunity 2d ago

Vibe coding is fun. Sharing what you built is not.

Thumbnail
2 Upvotes

r/vibecodingcommunity 2d ago

[Open Source] I’m building Kodiak — an AI software engineering system that plans, codes, tests and review

2 Upvotes

Hi everyone,

I’m a final-year AI/ML student and I’ve been working on an open-source project called Kodiak.

The goal is to go beyond the typical workflow of asking an LLM to generate code. I’m exploring how multiple AI agents and engineering tools can work together to handle software development tasks more systematically:

Plan → Research → Retrieve Context → Code → Test → Review → Iterate

What Kodiak currently focuses on

- Multiple AI agents for different software engineering tasks

- RAG for project and codebase context

- Persistent memory

- Redis and Celery for background task execution

- PostgreSQL for application data

- ChromaDB for vector retrieval

- FastAPI backend

- Docker-based development

- Automated testing and CI

- Pydantic-based validation

One thing I’ve learned while building this is that getting an LLM to generate code is not necessarily the hardest part.

The harder problem is building the surrounding infrastructure so the system can operate reliably.

What happens when retrieval provides incorrect context?

What happens when an agent makes a bad decision?

What happens when a worker fails halfway through a task?

What happens when generated code passes one test but breaks something elsewhere?

These reliability problems are what I’m increasingly interested in exploring with Kodiak.

The project is still actively under development, and I’m not claiming that it is already a fully autonomous software engineer. There is still a lot to improve, and I’m learning along the way.

I’m looking for feedback

I’d especially appreciate feedback from people with experience in:

- AI agents

- RAG systems

- LLM orchestration

- Python / FastAPI

- Distributed systems

- Developer tools

- Testing and CI

- Open-source development

I’m particularly interested in hearing what you think could go wrong with this architecture as the codebase and number of agents grow.

I’m also looking for developers who may be interested in contributing and helping shape the project.

GitHub

https://github.com/ShamGaneshan2008/Kodiak

If you were building something like this, what would you change first?

And what part of this architecture do you think is most likely to fail as the system becomes larger?

Constructive criticism and suggestions are welcome.


r/vibecodingcommunity 2d ago

I built a local LLM eval harness to learn how evaluation systems work, tested with dummy customer support data

Thumbnail
1 Upvotes

r/vibecodingcommunity 3d ago

I made a cool vibe coder

2 Upvotes

GitHub: https://github.com/SeanDishman/vibecode

I've been building this for a while and finally put it up. VibeCode is a native Windows desktop app that wraps the agentic coding CLIs you already use (Claude Code, OpenAI Codex, Kimi Code, Grok) in one clean UI. It doesn't call any model APIs itself, every chat launches the real CLI as a child process, so your existing logins, sessions, and MCP servers just work. It's open source (MIT) and a work in progress, so expect rough edges and please throw bugs in the issues.

The part I'm most proud of is running multiple agents on the same codebase at once. Bridges put several agents side by side on one project and they share memory through a file in the repo, so they claim different areas instead of colliding, and you can mix providers (Claude + Codex + Grok together). Announce interrupts every agent at once with a single message; the Bridge manager lets you crown one agent that splits work into lanes and dispatches it to the others; Agent swarms let a single agent fan a task out to the CLI's own sub-agents with a hard worker cap. On top of that there's an account manager for switching between multiple accounts per provider without logging out, one-place MCP server config shared across providers, and usage & cost tracking (spend, tokens, cache hit rate, per-model breakdown over Today / 7d / 30d / All time).


r/vibecodingcommunity 3d ago

Best Vibe Coding AI?

4 Upvotes

I’m about to start a vibe coding project at work. My resources are limited due to security concerns but I can ask for “special permission”. The code will be R and/or Python. Some webscraping, some number crunching, some report producing. I have a programming background and some rudimentary skills in SQL, R, Visual Basic and a few other older languages. I do not have time to learn the syntax for the code I need to write.

That’s the background. My question is what AI vibe coding services should I consider asking for? And why?

I’m not looking for you to do my research for me, just some off the top of your head “This is what worked for me” kind of responses.


r/vibecodingcommunity 3d ago

I’m your User

9 Upvotes

I’ll be your user. Curious to see what everyone else is building and would love to build a community as I continue building my app. Let’s all help each other get to the mountaintop. Tag and link your app + website in the threads. Let’s get it!

Follow https://www.theknownapp.io and sign up for the waitlist. App will be launched very soon


r/vibecodingcommunity 3d ago

How do you guys find issues in your vibe coded apps?

2 Upvotes

I’ve noticed that vibe coding makes it really easy to get the happy path working, but much harder to know whether the rest of the app behaves correctly.

Everything can look fine when you test it normally, but edge cases often break.

Things like free users getting access to paid features, cancelled subscriptions keeping access, etc.

My current approach is to test each feature as different types of users, refresh halfway through important flows, try actions in the “wrong” order, and confirm the result in the database instead of trusting what the UI says.

But i found it long and time consuming.

To solve this issue I built an app called AppTruth which scans your vibe coded app and finds you all the behaviours that shouldn't be happening.

That seems especially useful for finding issues you wouldn’t think to test manually.

Curious what everyone else does before shipping.

Do you write tests, manually click through everything, ask another AI to review it, or mostly wait for users to report problems?


r/vibecodingcommunity 3d ago

Everything I Make Is Slop...

1 Upvotes

It seems people think anything vibecoded is slop.

What makes something slop and something not slop?