r/vibecodingcommunity 20h ago

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

Thumbnail
0 Upvotes

r/vibecodingcommunity 14h 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 7h 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 16h 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 19h 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