What’s Your Vibe Coding Stack in 2025?
by•
AI dev tools are evolving crazy fast , every few weeks there’s a new “must-try” for vibe coders.
Some people are building full products with @ChatGPT by OpenAI and @Replit , others swear by @Cursor and @Claude by Anthropic , and a few are mixing @Lovable + @v0 by Vercel + @bolt.new to ship apps in record time.
I’ve been refining my own vibe stack lately, trying to find that sweet spot between speed, control, and creativity.
It made me wonder ,what does your setup look like right now?
Share your current “Vibe Stack”:
Your go-to AI tools
How you connect them together
What kind of projects you’re shipping
Let’s crowd-source the best combos for 2025 . Who knows, maybe we’ll spot the next trend before it blows up.
2.3K views
Replies
For me, I'd love to use the best model for what they're better at and use a different model to review the work. For example, claude code for coding and codex for code review and qa, and a claude code for design related stuff. This does bring a context sharing problem, which I used puffo ai to work with these agents just as working with people.
claude made a failing test pass by changing the assertion to expect the broken payload instead of fixing the hanlder, the suite was green for days while the feature was dead in production ) now I lock test files from agent edits completely
mine is less about the model and more about the two things wrapped around it. claude code as the agent, with an instruction file it reads at session start holding the rules it isnt allowed to break. branch naming, what it may run unattended, what it must never touch. then a sqlite file that logs every action it takes with the outcome attached, which sounds like absurd overkill for a side project and has quietly been the most useful thing in the stack. when something stops working i can query for when it changed instead of trying to remember. the model tier moves around constantly and i mostly stopped caring which one is on top this month. the constraint file and the log are the parts that actually changed my output, and neither of them is a tool anybody sells you.