50 pointsby sirnicolaz5 hours ago39 comments
  • jacobrussell3 hours ago
    If by production you mean “done” and used by someone (i.e. by me) then I made https://skidmarks.club to replace my peloton subscription. You can browse and ride at https://app.skidmarks.club.

    I’ve done ~10 rides with it so far. Hoping I can convince my wife to use it and save myself $50 a month. That would be my most successful side project by a wide margin.

    There are probably a lot of examples like this. Vibe coded software people made for themselves, and other people could use it if they wanted.

    All of the code was reviewed by myself, and I’m a programmer, so not sure if that fits the description. I didn’t go through it with a fine-toothed comb, however, and 90% of the review was on my phone. I also did some non-vibed setup for hosting, db, email, etcetera.

    To me vibe coding is not looking at any of the code at all, but the definition reads a little loose to me these days, especially on HN, as: did an LLM “type” most of the code or did you? Either way I don’t think the term or definition is a big deal and probably not worth splitting hairs over.

    • bitbasher38 minutes ago
      Skid marks… not quite the skid marks I was thinking. Sorta fitting for a vibe coded app to be called skid mark though.
      • jacobrussell34 minutes ago
        I thought it was a fun play on words
    • hcwilk2 hours ago
      What’s your setup to review (presumably) PRs on your phone?
      • jacobrussell32 minutes ago
        I just use the GitHub mobile app and turn my phone sideways
  • transitorykris3 hours ago
    I own a small bar and inventory management is either spreadsheets or saas products meant for larger operations. With the exclusion of some very small changes (e.g., deleting dead code) it’s 100% written using Claude Code. Initial design was generated from markdown documentation I wrote, and each change has been careful and incremental. A few blind alleys lead in the wrong direction, but was always easy enough to back up and try a different approach.

    Database migrations and anything related to calculations have had a fair bit of hand holding. Beyond tests it writes I do still test by hand for confidence.

    It’s coming up to a year of use. Claude Code credits has still not exceeded the cost of a paid product. I don’t count my time here because this doubles as keeping my technical side busy, and it’s been enjoyable.

    • steve_adams_863 hours ago
      This is a strange space in software. I have a tiny tissue culturing lab in my home and wanted to manage media batches and their ingredients, cultures using the batches of media, inventory for media ingredients, and general inventory for running things. Cleaning, cutting, measuring, etc. I couldn't find anything which would allow me to keep stock of what I've got in the structure I needed, let alone while also project things like "I've got enough inventory for n batches of y media". And all of the half-measure inventory software was expensive as hell.

      I also built a solution for myself that was largely vibe coded. The underlying schema for inventories, batches, orders, cultures, etc was done in advance to help guide Claude along with documentation, but I'd guess 75 percent of the code is pure Claude.

      It has worked really well for a while now. Since it's just me using it and I'm able to roll with issues it causes or verify outputs on the fly if I want to, it's totally fine not being super polished. It meaningfully increases my productivity by allowing me to manage things in a way that fits my mental model and business.

      Like you, the cost of the project has been less than a subscription. And the subscriptions wouldn't even do what I needed.

      • sp4nner3 hours ago
        You're doing tissue culture at home?! That's impressive. I imagine you've got some background in bio - what projects are you working on?
        • hackingonempty2 hours ago
          Tissue culture is a thing in the Cannabis world for efficiently reproducing and storing different varieties. I think it can also be used to create non-infected plants from plants infected with hop latent viroid.

          I think the main issue is maintaining sterile conditions but its doable.

  • Emergency560624 minutes ago
    I'm not sure how you would define "successfully," but I've created 3 different Windows apps using nothing but vibe coding (I'm not a coder) that I use for work and one app I use for exercise (a basic, browser based Tabata program that for whatever reason does more than any android app I've been able to find, and for free). They're fairly simple things, but they get the job done in ways that did not exist for me before.

    And, again, I'm not a coder and only know the absolute basics of programming. This is not something I would have been able to do without AI assistance.

    There's also the fact that many programmers working on software today both big and small use AI to one degree or another, maybe not to program the whole thing from scratch, but definitely to help ease the process. It's an invaluable tool.

  • wjgilmore3 hours ago
    I’ve built and launched numerous SaaS products (which have paying customers) which were almost entirely built usibg AI agents including https://securitybot.dev and https://dependencydesk.com.

    My experience so far has been if you possess both deep domain-specific experience and significant coding experience then these coding LLMs, and most notably Opus 4.5, are the greatest productivity booster in the world.

    • kirubakaran3 hours ago
      Looks great! If you don't mind sharing, what is the revenue and profit?
  • kanchanepally3 hours ago
    I’ve pushed a full-stack educational platform for parents, My DigitAlly, to production using what we call "Systematic AI Collaboration" (a matured version of vibe-coding). It isn't a static site; it’s a production app with: Full Auth: Google OAuth and email/password. Engagement Engine: A node-cron system that automatically sends weekly tips to 200+ subscribers every Saturday. Dynamic Curriculum: A 5-block lesson flow driven by a JSON-based instructional design framework. Automated Resources: Auth-aware server-side PDF generation for parent checklists.

    The "Methodology" that made it work: We moved from initial idea to production in four weekends while I maintained a full-time role. The key was moving past "chaotic vibes" and treating different LLMs like specialized team members: A) Strategic Layer (Gemini Pro): Used for architectural decisions (React/Vite, Node/Express, PostgreSQL/Prisma) and product prioritization.

    B) Execution Layer (Claude Code): Used for heavy lifting—implementing the cron jobs, refactoring API patterns, and writing the test suite.

    C) TDD as the Guardrail: We never "just coded." Every AI-generated feature followed a strict Test-Driven Development cycle using Vitest. If the tests didn't pass, the code didn't go to production.

    The result is a stable system serving 200+ active users with a codebase that doesn't feel "schizophrenic" because we maintained strict cognitive boundaries and context documents for the AI to follow.

  • civancza23 minutes ago
    i am about to incorporate my first business, https://querypanel.io. I vibe coded it, but i reviewed every line of code. I created the architecture on my own so i would say it was spec driven. I have 15+ years of experience in engineering and i think AI is a good thing if you consider your self as an engineer. It speeds things up. Specially opus 4.5 or gemini 3 pro.
  • jokull2 hours ago
    Keep in mind that a lot of vibe-coded software is flying under the radar because it’s being built to replace SaaS and bring workflows in-house. We often judge success by public launches or ARR, but the real "killer app" for this methodology right now is internal tooling for small teams. For example, instead of spending developer bandwidth integrating Salesforce into first-party data, teams are increasingly just vibe-coding a bespoke CRM or CMS as an appendage to their existing database. It’s complex software (state, auth, heavy logic), but it will never be on Product Hunt because it's purely for internal utility. The success metric here isn't "did we get 10k users," it's "did we avoid a $50k contract and weeks of integration hell."
  • sorcercode4 hours ago
    Not sure how you would define successful though. I built a Firefox addon almost entirely through vibe coding and I know at least 5 other random souls on the Internet who have used and thanked me for it. But it is by no stretch, if popularity or how much money it makes, are the measures.

    I was trying to test the theory if it's even possible to release something production grade with vibe coding. Wrote about the experience here https://kau.sh/blog/container-traffic-control/

  • vunderba3 hours ago
    Piece Together is an animated puzzle game that I built with a fairly heavy reliance on agentic coding, especially for scaffolding. I did have to jump in and tweak some things manually (the piece-matching algorithm, responsive design, etc.), but overall I'd wager that LLMs handled about 80% of the work.

    I've never seen anything like it since the original days of the game "The Island of Dr. Brain" released in the early 90s.

    https://mordenstar.com/projects/piece-together

    • lucid-devan hour ago
      Love this. May a recommend some kind of "disperse pieces to edge" feature/button, (or perhaps automatic behavior, flag-to-enable or not), so that when you zoom-out a bit, you can automatically "disperse" all the pieces to the edge or at least "equally space them" in the available space, etc.

      I.e. the problem is a lot of time spent on moving the pieces off-of each other. While this is more pleasent in real-life tactile space, not as much fun when using the computer to have to click-and-drag all the pieces around (of course, sorting them etc, is up to the user, but just some kind of initial "see all the pieces in the space without them overlapping each other to the greatest extent possible depending on the total space avaliable given the current zoom settings" ...

  • mrieck7 minutes ago
    Not sure about success - but I vibe-coded a Chrome extension that uses your fal.ai API key to create/edit AI images/videos in a visual workflow:

    https://chromewebstore.google.com/detail/ai-slop-canvas/dogg...

    I think it's decent complexity for something where I didn't even write one line of code. (all Claude Code)

  • postepowanieadm3 hours ago
    Windows 11 is quite popular.
  • Imustaskforhelp3 hours ago
    I once created a pomodoro multiplayer application after being frustrated by https://cuckoo.team (although good software, nothing against the team) just not working/actively glitching

    spocklet-pomodo.hf.space/

    I created it as a single main.go with just a single main dependency (gorilla websockets iirc) and I think It's pretty successfull between me and my friends and I am not thinking of monetizing it ever

    There is also https://spocklet-beta-pomodo.hf.space/ which has some more features to make it more user friendly that I got suggestion for so yeah

    I made it out of complete frustration and the first prototype was built in <30 minutes but I guess I won't really take credit of it because I am just pleasant that I can now use such a software and perhaps other might too.

    I don't know but I am very gloomy about AI mostly but prototyping in domains I don't know too much about to create a "just good enough" for my own use case is the only valid use case I find of it I guess.

  • whistle6503 hours ago
    Vibe coded this with my son. Something I always wanted since we often record sporting events and want to know if it’s worth watching. So, successful in that sense and works in real time.

    https://www.donttellmethescore.com/nfl

    • Havoc3 hours ago
      Gives me a sever error
      • whistle6503 hours ago
        Sorry, just a vercel free tier project used by two people… Perhaps this is too much success. Seems to be a rate limit on one of the free data sources I use. Should be vibe-fixed now.
    • Mountain_Skies3 hours ago
      Hug of death. Wonder if it's due to HN readers or the LLMs perpetually scanning threads saw the URL and hammered it looking for novel content?
  • jimlawruk3 hours ago
    Here is an web app that tracks the grocery prices of my shopping at Aldi. It is meant to track grocery price inflation over time. It is obviously limited and incomplete since it is just based on my haphazard Aldi shopping. It includes a "basket of goods" total for each quarter, graphs, product pages, etc. It is coded by an LLM (except for maybe the initial commit). I don't write or edit the code, but I do sometimes "look" at the code, and ask for changes based on what code I see, so purists might question it as being 100% vibe coded.

    https://aldi-prices.lawruk.com/ https://github.com/jimlawruk/aldi-prices

  • geiseran hour ago
    I produced https://lynxprompt.com as an IDE/tool-agnostic AI config rules generator & catalog, via CLI & WebUI. There is a lot of love (and $$$) put in the Wizard generator, you can check it both via CLI or WebUI.

    I've got some users and the stuff I can do each time I start doing vibecoding is astounding. Obviously 50% the work is just fixing what the AI didn't understood or imagined too much, but having a good AGENTS.md is key (and patience from me) - so that's why I'm buidling LynxPrompt indeed, for having an easy way to own a good AGENTS.md file for my next projects... and hopefully you too.

  • _boffin_2 hours ago
    Not sure this counts as "successful" yet (invite-only beta, still rough), but I'm building a full product almost entirely via LLM-assisted coding.

    Tangents (https://tangents.chat) is an Angular/Nest/Postgres app for thinking-with-LLMs without losing the thread.

    - Branch: select any span (user or assistant) and branch it into a tangent thread so the main thread stays coherent.

    - Collector: collect spans across messages/threads into curated context, then prompt with it.

    - You can inspect a "what the model will see" preview and keep a stored context-assembly manifest.

    Vibe-coding aspect: about 600 commits and about 120k LOC (tests included) and I have not handwritten the implementation code. I do write specs/docs/checklists and I run tests/CI like normal.

    What made it workable for something larger than a static page:

    - Treat the model like a junior dev: explicit requirements plus acceptance criteria, thin slices, one change at a time.

    - Keep "project truth" in versioned docs (design system plus interface spec) so the model does not drift.

    - Enforce guardrails: types, lint, tests, and a strict definition of "done."

    - The bottleneck is not generating code, it is preventing context/spec drift and keeping invariants stable across hundreds of changes.

    If you define "vibe coding" as "I never look at the code," I do not think serious production apps fit that. But if you define it as "the LLM writes the code and you steer via specs/tests," it is possible to build something non-trivial.

    Happy to answer specifics if anyone cares (workflow, tooling, what breaks first, etc.).

  • prhn4 hours ago
    I vibe coded a windows shell extension that renders thumbnails for 10-bit videos. Windows does not do this out of the box.

    I also built a Preview Pane Handler for 10-bit videos.

    The installers (WIX) were vibe coded as well.

    So was the product website and stripe integration. I created a bespoke license generation system on checkout.

    I don’t think I wrote a single line of C++ code although the WIX installers and website did receive minimal manual adjustments.

    Started with Claude but then at some point during development Codex got really good so I used only that.

    https://ruptureware.com

  • h993 hours ago
    https://www.pixelhook.app/

    My friend vibe coded the entire app to generate thumbnails for YouTube videos.

    • acessoproibido3 hours ago
      Nothing against your friend but what a hellish product
  • hbcondo7143 hours ago
    https://behavior.today

    I cloned Paddle's NextJS starter kit[1] and incorporated my previous reporting code built with Observable Framework[2].

    It actually took longer to get the website (domain, terms, privacy) approved by Paddle and my identity verified by its 3rd party than to vibe code the site with Claude Code.

    [1] https://github.com/PaddleHQ/paddle-nextjs-starter-kit

    [2] https://github.com/observablehq/framework

  • scottgpaulin3 hours ago
    I built https://www.agentsfordata.com entirely in Cursor agent mode

    I have rebuilt it a few times in agent mode while trying to get pmf. I used about 22B tokens this year

    • FiberBundle3 hours ago
      It just boggles my mind that anyone would use something like this. Why would one send their data to some unknown company that internally likely just delegates the work to one of the big AI labs?
      • asdev3 hours ago
        I can promise you no one is using it
  • rabf3 hours ago
    A lightweight GTK Linux chat client that is not based on any web tech and supports most of the features offered by the various API's out there such as audio and image gen.

    https://github.com/rabfulton/ChatGTK

    I'm sure the code can be critisized, but I'm happily using the application I wanted that did not exist having never programmed python in my life.

  • hugs3 hours ago
    i'm vibe coding vibium, a test automation tool in the spirit of playwright and selenium. (was #1 on hn last week for a little bit with a lively discussion.)
    • ramesh313 hours ago
      What's your tooling look like? Favorite model?
    • ludamn3 hours ago
      [dead]
  • jedberg3 hours ago
    My friend created an iPhone app that controls a set of MCP servers that will control all the smart things in his house. Completely vibe coded. The servers are in Python, which he can read but not really write, and the app is in Swift, which he doesn't understand at all.

    https://github.com/adrianco/c11s-house-ios

  • oliwary3 hours ago
    https://spaceword.org - a daily word game inspired by banana grams, where you need to arrange 21 letters in a tight square. Has around 400 daily active players.

    I'm pretty familiar with the underlying stack, which helped a lot since I knew the pitfalls. But pretty much all of the code is written by an LLM.

  • johnernaut3 hours ago
    I vibe coded Pantry Recipes as an experiment (and to fill a personal need), and it has paying subscribers. Certainly not commercially successful though. https://apps.apple.com/us/app/pantry-recipes/id6744589753
  • senko4 hours ago
    Here's one: https://markshot.dev and a writeup at https://senkorasic.com/articles/mvp-vibe-code

    It's not commercially successful (it's a side project), but still represents a complete project.

  • singularity20013 hours ago
    If by production you accept a new programming language than yes:

    https://github.com/pannous/goo (1% handwritten go extensions)

    • clktmr3 hours ago
      This is so ironic. Why would you add all these "features" to Go, if you're not interested in using the language at all?
  • bachmitre3 hours ago
    An easy to use pickleball game schedule creation tool: https://www.pickleballdinking.com/resources/schedule.html
  • Havoc3 hours ago
    Busy coding up a variety of MCP server. Not a saas but I’d consider them success in that they do what I want
  • dvrp3 hours ago
    Yes, Jmail.

    It’s a suite of tools to navigate the Epstein files—it even made it into the news!

    Here’s the HackerNews discussion: https://news.ycombinator.com/item?id=46339600

  • game_the0ry2 hours ago
    FWIW, I am building a market place app in rails and trying to vibe code the majority of it. Mostly with Gemini CLI + Cursor.

    Its been very decent so far. Time will tell if the PMF is there for the MVP, but thats on the product, not the AI generated code slop.

    FYI, this was more of a hobby horse + learning project than an "enterprise SaaS requiring SOC2 compliance." I am basically building a toy. So far, I have learned that you can ship code toys very quickly to test a market demand with an MVP.

  • tacoooooooo3 hours ago
    This probably doesn't count as an "app" in terms of what you're looking for, but was a fun little project

    https://alexjacobs08.github.io/lobsters-graph/

    (i built this in search of a lobste.rs invite if anyone willing and able sees this--email in my bio :)

    • rabf3 hours ago
      Nice site, runs very smoothly on Firefox.
  • OfflineSergio3 hours ago
    With all the AI hype lately, if a product like that actually existed, you would’ve heard about it by now.
  • Gys3 hours ago
    You define ‘successful’ as ‘managed to push to production’? I think that is a disappointing low barrier.
  • Lionga3 hours ago
    Why do I read about all the vibe coders claiming to be 20X engineers in LLM threads and replacing many departments. Yet here is not a fking single commercially successful thing here?

    Funny also how Loveable and the like are hiring engineers like crazy, yet think engineers are not needed anymore. Why not just vibecode Loveable itself? Oh wait I can tell you why.

    • smokel3 hours ago
      You could probably find a good answer anywhere, but the solution is in a more nuanced view.

      Some types of programming benefit more from AI tooling than others. For example, prototyping seems to be the most fruitful area. Also, writing small utilities is much easier, to the extent that a two hour job would now take only a few minutes. That's where you get the multiplier posts from.

      But working in a large codebase using proprietary libraries is not a solved problem for AI (yet).

      It's just that the average engineer does not spend all of their time on things that can be sped up.

      Speeding up 1% of your time by a factor 20 simply does not help very much. But for some roles, I'm sure that a 10% net increase in productivity is realistic.

    • 8note2 hours ago
      ive seen people using lovable in the wild now, and theyve made things that they are using themselves, and are working on something like a 5-10M CAD/y business serving the oil industry.

      I didnt join them because I dont really want to do all the work that comes with owning a business like the accounting. mostly the accounting. i also dont particularly want to be maintaining an extra couple of systems at present. there mught be vibe coding currently, but not vibe operations

      they should have the thing up by june at their very slow rate of building with lovable, but theyre not people who would ever frequent HN.

    • rvnx3 hours ago
      OpenAI themselves uses vibe coding to develop their services
      • paxys3 hours ago
        Put "I don't have any experience in software engineering but can vibe code very well" on your resume and see if you get any interest from OpenAI or Anthropic or any one in the long list of companies that have declared software engineering dead and LLMs the future of coding.

        It's telling that they will put their own applicants through a dozen rounds of stringent technical interviews, Leetcode exercises, use anti-AI assistance tools and pay their staff $500K or more, all for something they advertise as being easy to vibe code away.

        • smokel3 hours ago
          That's a bit dishonest. Obviously, vibe coding is only productive for engineers who actually know what they're doing. Perhaps it is best to consider it a multiplier, not an enabler.
      • kodyo3 hours ago
        OpenAI is in no way "commercially successful."
  • ludamn3 hours ago
    [dead]
  • exaldb4 hours ago
    [dead]
  • andrewmcwatters3 hours ago
    [dead]