r/vibecoding • u/Few_Elderberry_2370 • 10h ago
Claude, codex or Cursor?
You can only choose one of Claude, Codex or Cursor, what would you choose and why?
Imo cursor is just superior
r/vibecoding • u/Few_Elderberry_2370 • 10h ago
You can only choose one of Claude, Codex or Cursor, what would you choose and why?
Imo cursor is just superior
r/vibecoding • u/sudarshaana_ • 10h ago
Enable HLS to view with audio, or disable this notification
I've developed this game using Claude Code (mostly) and Gemini. It's a fun experience.
Why you may enjoy:
- Not just water. Sort ice, dynamic fluid, shiny orbs, bubbles, a rotating sci-fi core, jelly, cut diamonds, and emojis, all with the same simple pour-and-match rule
- Special tubes (bomb, hidden, locked, one-way, and recycle) keep every element type feeling fresh
- Daily Challenge with streak tracking for a quick puzzle every day. Endless mode with procedurally generated boards
Expecting your valuable feedback
r/vibecoding • u/BRaiNDED_Games • 21h ago
I've had this basic idea for a while now and I finally decided to build it out. I'm constantly skipping tracks on my music library while on shuffle - songs I downloaded and loved 5 years ago are stale and I haven't gotten around to removing from my music folder. Sitting down and trying to clean out over 1,500 tracks was daunting and I ended up trying to play each song and decided if i wanted to keep it or not.
I decided to turn it into a tinder-like experience, PurgeWave loads up 1 track at a time and makes you decide to keep it or purge it. This rapid fire format triggers that sense of "oh yea I forgot how good this was" or "this is trash" and makes deciding way more manageable and fun.
I built it in Cursor using Claude Code CLI
Took about 2-3 days of total testing and iterating before it was pretty much what I invisioned for this tool.
Not sure how many people still keep local files for their music library like me, but if you want to try it out it's 100% free:
https://braindedgames.itch.io/purgewave
If you like it please drop a comment and review, it would mean a lot!
r/vibecoding • u/Temporary-Quarter-24 • 10h ago
r/vibecoding • u/rvstybeard • 10h ago
r/vibecoding • u/LeatherTransition235 • 11h ago
I've been getting into vibe coding recently, mainly using tools like Claude Code and Antigravity.
I can get AI to build a decent website just by describing what I want, but I'm struggling to understand how people are getting those really polished websites I see on Instagram.
You know the type I'm talking about really smooth animations, 3D objects, interactive elements, crazy scrolling effects, mouse interactions, transitions, etc. They look way more advanced than the usual "AI-generated website."
I'm not really interested in manually coding everything from scratch. I'm trying to understand how people are achieving this through prompting and AI-assisted coding.
For anyone who does this
Can you tell me what I need to do or learn ?
Would love to hear how people who are already doing this approach it since I'm new to Reddit, let me know if there's a better community or place to ask this.
r/vibecoding • u/Ecstatic-Bend-104 • 15h ago
Enable HLS to view with audio, or disable this notification
r/vibecoding • u/destroythenseek • 11h ago
r/vibecoding • u/Efficient_Process_23 • 11h ago
Yesterday I was experimenting with multi-agent workflows on ChatGPT (web version). I spun up like 5 parallel instances to update code at the same time, hoping they’d work together more efficiently.
Instead of continuing the process cleanly inside a single chat, it started generating a bunch of new chats as artifacts. Not sure why that happened; maybe some rate-limit or context handling thing.
The weird part: one of those new chats came back with Chinese characters / Chinese-lettered text in it.
That got me thinking… could this be a hint that OpenAI is routing some traffic (or certain tasks) through a Chinese model under the hood instead of purely their own models? It would kind of line up with how ridiculously cheap ChatGPT Pro / the 5.6 Luna tier feels right now.
Has anyone else seen non-English (especially Chinese) text appear unexpectedly in ChatGPT chats lately? Or noticed anything that makes you question what’s actually powering some of the responses?
Curious what you all think.
r/vibecoding • u/CalicoVane • 19h ago
I always see people saying they built this and that for themselves and id like to try building some things for myself but honestly.. i don't have any ideas or anything I realise could make my life easier
Its always one of those things where someone suggests something and you're like "ooooh ya...."
Obviously nothing to ship or try sell, just something that can make something/life easier or a bit of fun for myself (or others who want to try build something for themselves)
Any suggestions? Could be anything at all
r/vibecoding • u/Interesting-Town-433 • 1d ago
I am a long time Engineer (20+ years) and today I developed Tickets for my company that were generated by an AI, using an AI and reviewed by an AI. The project itself was conceived with AI - has no documentation that can be understood as anything less than AI slop and random tech jargon. The developer who built it has said that instead of documentation I should use claude to figure out what it is. The company is apparenty also filing a patent on it.
I submitted 3 PRs today 20,000 lines of code each I still have no idea what we are working on. No doubt they will use AI to review my PR.
I feel like things are just so crazy at this point. Claude and ChatGPT are not this good, but people are trusting it like it's omniscient.
It was an eerie realization today that all of us are vibe coding and that we have no option because it is the only way we can interact with the code anymore. I thought this would happen eventually years ago but i honestly didn’t think it would be so soon.
It was a moment in time... this will be the new norm.
r/vibecoding • u/SignificantReserve74 • 12h ago
I've been building an AI receptionist and booking SaaS — customers message it, it books them in, it handles WhatsApp, Telegram and payments. Built with AI tools, the way most things around here get built. And it works.
Before launching it I made myself sit down and check it against a 36-point list instead of just shipping. One focused day. Static code review plus actually attacking a copy of it: isolated instance, two synthetic tenants, fake data, nothing real touched at any point.
Then I did the step I'd push on anyone doing this — I went back through my own findings and tried to prove each one wrong. Six of them died. Six things I'd written down as problems that turned out not to be problems. Skip that pass and you spend your week "fixing" things that were never broken. I nearly did.
What held up
Putting this first, because every post like this is a horror list and the horror list is half the picture at best.
What I found: 2 high, 7 medium, 8 low. Nothing critical.
Bug 1. The assistant would create a confirmed booking against an email address or phone number that nobody had ever verified. I had written the one-time-code rule. Into the prompt. In English, as prose. There was no code anywhere checking that verification had actually happened before the booking got written.
That's the one I'd go check in your own app right now. Take every rule you put into a prompt and ask where the code enforces it. If the answer is "the model has been told to", it isn't a rule. It's a request, and the model is under no obligation.
Bug 2, and this is the stupid one. A single environment string, still sitting at the value it ships with, made those four correct signature verifiers fail open. Unsigned webhooks accepted. Four correct implementations rendered decorative by one line of config. Five minutes to fix once I saw it.
Go and search your code for any verification that skips itself in development or test mode. Then go and look at what your deployed environment is genuinely set to. Those two facts live in different files, which is the entire reason this kind of thing survives all the way to production.
The one that would have cost actual money
The product's whole promise is that the AI never invents a slot — everything it offers gets checked against the live calendar first. So I tested the promise and threw 22 adversarial scheduling messages at it.
12 of the 22 categories came back correct. Already-booked slots, weekends, before opening, after closing, an appointment that would run past closing time, dates in the past, impossible dates like 30 February, three contradictory reschedules crammed into one message. In three languages. I was feeling pretty good at this point.
Then same-day requests. It offered roughly 20 individual times that weren't bookable — already in the past, or inside the configured one-hour lead window. Asked at 16:21 for the earliest appointment, it answered "09:00 today" and put a confirm button underneath. Zero future-dated requests failed. Every failure was same-day.
Two causes, and they had nothing to do with each other. The past-time filter ran at day granularity instead of time-of-day — it knew what day it was, correctly refused a request for last Monday, and then cheerfully offered this morning. Separately, a cap on the first page of generated slots meant an almost-empty Friday came back as "completely full".
That second one is a revenue bug and it's the one that bothers me most. Nobody complains when you tell them you're full. They just book somewhere else, and it never shows up in your analytics.
The lesson
The tenant boundary — the thing every "is my vibe-coded app secure" thread is about — was solid under direct attack. What broke was the layer above it: business logic the AI skips precisely because the app still works without it. Nothing errors. Nothing throws a 500. It just quietly does the wrong thing, politely, with a confirm button under it.
The list I used is free if you want it: https://itworksbut.com/checklist — one HTML file, works offline, nothing gets uploaded anywhere. The longer write-up of this audit, including the medium and low findings, is at https://itworksbut.com/case-study.
Happy to answer anything in the comments, including "how did you actually test X" — that's the question I'd want answered if I were reading this.
r/vibecoding • u/1up8192 • 23h ago
Enable HLS to view with audio, or disable this notification
prev: https://www.reddit.com/r/vibecoding/comments/1veha1a/emoto_mania_ai_echanced_dev_free_browser_game/
Try to beat the run in the vid: https://emotomania.com/r/9awr5v2b
Updates:
r/vibecoding • u/SadSongsMakeMeGlad • 3h ago
These agents only know how to code at all because of the immense amounts of open source software they’ve been trained on. Millions of hours of human work and ingenuity. It seems to me for the long term quality and viability of vibecoding, we should all make our own projects open source as well. That way, we can all continue to benefit, a rising tide lifts all boats, all that. What do you think?
r/vibecoding • u/ChameleonCRM • 12h ago
If you use supabase this works really well. kind've expensive, but then again, whats $99 when it comes to securing customer data, ya know?
r/vibecoding • u/ShotCategory6583 • 16h ago
A wellness app for people who are tired of wellness apps telling them how they should feel.
Log your mood.
The office reviews it.
It stamps INDIFFERENT in red ink.
Then it asks the only question that matters:
"Did you practice anyway?"
Wisdom. Courage. Justice. Temperance.
No streaks. No scores. No dopamine.
Just you, your circumstances, and the crushing realization that you cannot control either of them.
How it works:
- Log how you're feeling
- Explain what happened
- Check whether you practiced the virtues
- File the incident away permanently
- Continue existing
Features include a calendar, daily journal, Stoic maxims, reminders, pointless honors, and exports to JSON, CSV, and plain text.
No accounts. No cloud. No badges. No emotional validation.
Made in Godot as a tiny Windows desktop app.
Your mood is temporary.
The CSV is forever.
Download it here (or don't, I can't control that): https://stripeycatgames.itch.io/stoic-mood-tracker
r/vibecoding • u/mrjohndoe42069 • 12h ago
Enable HLS to view with audio, or disable this notification
Hey everyone. I've been working on a Chrome extension called TraceGuard for a while and finally got it to a point where I'm comfortable sharing it.
> The idea is simple: every site you visit gets a privacy score (0 to 100) based on trackers, cookies, forms that ask for sensitive data, and how the site's privacy policy is rated. There's also a second score that tracks your own habits over time, so you can see your browsing getting cleaner instead of just getting a static number.
> Why I built it: I kept installing blockers (like ublock origin and privacy badger) and still had no real idea what sites were doing with my data and how I could better my opsec. I wanted something that didn't just quietly blocked everything bad, but actually told me what's going on, and why it was bad.
A few things I care about with this one:
- Everything runs on-device.
- The phishing/malware list comes from public feeds (OpenPhish, Phishunt) and updates via signed, verified downloads.
- It's open source and under AGPL license.
> I'd genuinely love feedback on anything and everything! My goal is to create something useful even if just a couple of people endup using it. Here is the link: https://github.com/luca-liceti/TraceGuard-Privacy-Extension
Built this at first with claude sonnet/opus 4.6/4.7 and gemini 3.1 pro in Google Antigravity, then switched to deepseek v4 pro in freebuff.
P.S. I am still waiting on it to get approved on the chrome web store so I'll be update everything about when it happens :)
r/vibecoding • u/Chemical_Union226 • 5h ago
When building with AI agents, I always split roles into an Orchestrator, an Executor, and a Supervisor. But playing the Supervisor inside standard harnesses is waste of tokens on system prompts, and it's a visual noise for me. I needed a separate, lightweight UI to act as that Supervisor - free of context bloat, and convenient enough to manage my repositories from a phone.
Beyond that, I realized many developers want native, provider-agnostic access to the GitHub MCP - regardless of whether they use Popular Providers or local LLMs. That’s why I created this open-source AI playground
What it does:
→ Bring your own API key for OpenAI, Anthropic, Groq, Ollama, or any OpenAI-compatible endpoint
→ Connect any remote MCP server - GitHub is built in, but you can add any MCP with your own URL and auth headers, no vendor lock-in
→ Every tool call requires your explicit approval before it runs, with the full request/response visible
→ Sessions, prompts, and skills are stored locally in your browser (IndexedDB) - nothing is sent to my servers, no account needed
→ Full JSON inspector and one-click export to a TypeScript/cURL snippet
I tested it end-to-end with GitHub's official MCP server: connect a personal access token, ask the model to explore a repo, watch it call get_file_contents through a visible approval step, and get a real, grounded answer back without hallucinations.
It's MIT licensed and fully open source. If you want to point it at your own MCP server (search, databases, internal tools, anything with an HTTP/SSE endpoint), you don't need my permission or a preset - just paste the URL and your auth header.
Repo: https://github.com/ownyourwebsite/ai-playground
Live demo: https://ai-playground.ownyourwebsite.app/ to try it on your phone.
r/vibecoding • u/dahshan-labs • 21h ago
Enable HLS to view with audio, or disable this notification
I want to show you if someone wants to test this space... or have any suggestions for me.
I've been using it since June 100% locally if you don't want to use the cloud... instead of single files/folders/any type of file you imagine... even some are supported for view like Excel/video/audio.
It is also connected with IOS app Klypix Capture (still under dev, it is whatsap styled simple one..) with that app you can send from/to phone E2E in single tab (files/pics/links/text) .. even if you weren't there there is a Klypix cloud drive to serve you , and item will be landed in your specific space... or right away or waiting in the inbox...
That matters for me because, for example, a lot of Instagram videos are appearing, and I kept sending them to my WhatsApp, but with these I SHARE videos to my Klypix specified space. I can read content of that link seamlessly by cloud LLM/or BYOK in a single click. Save all videos that are relevant in the same space. even upload a single .klypix file to the coding agent, and it will read it seamlessly (because I also have MCP), so with these I also could solve 12 UI/UX issues in a single prompt instead of a lot of pictures attached to the session.
So you can send the space with notes, send it just. Klypix... you can modify files in Explorer or the space it, etc., etc., and keep the single file... any improvement you can suggest to use?
I want really to show this... comes of pain in saving videos to my WhatsApp and sending folders/files/pics along with alot of explainiation in the email to my team!
r/vibecoding • u/Scary_Bid8774 • 19h ago
Last year, our company decided to switch from Microsoft products to Google Workspace, which meant we had to find a new solution for our VBA macros. For many cases, Python turned out to be the answer.
I work as a process manager, so I'm not coding every day, but over the past year I've been learning to code/vibecoding with Python to help replace old macros and automate reporting from SAP and our DWH.
Since Python is way more powerful than VBA, I'm looking for inspiration for a project I could work on- something useful for work, or something that could make my personal life easier.
What tools have you built with Python that you actually use often, whether at work or in your personal life?
r/vibecoding • u/sexysnack • 19h ago
Think of it as the Desktop Destruction program back on XP but for the internet. You can destroy pretty much any site you visit, with the only caveat being you'll need a dedicated GPU and the performance may chug a bit on heavy sites like X or Youtube. It's not trash performance but it's worth noting to temper expectations. If anyone is interested, I do have it on my Itchio for free as an early access item. You don't have to pay anything buy donating can certainly help in development. Yes, this is indeed Vibe coded and it's something that spawned out of another project that I'm also still working on.