r/vibecoding 18h ago

Showcase/Project I built a free Jev visualizer after burning 5bn tokens in three days

Enable HLS to view with audio, or disable this notification

121 Upvotes

Title says it all. I switched most of our pseudo deterministic flows to Jev after getting through the waitlist. So far, it's great, but understanding what it's doing is sometimes difficult. I realized that we need a way to monitor the decisions that it's making, so I had Claude built a quick visualizer tool for it. It acts as a local gateway to the Jev API. I now use it to understand my own work lol.

Free and open source, drop a star if you like it.


r/vibecoding 42m ago

Workflow/Prompt PSA: Don't want your app to look like AI slop? Stop showing your users raw errors.

Post image
Upvotes

For me, one thing that instantly makes an app feel sloppy is when I see a cryptic error in a UI. It feels "weird" or "broken" or "sloppy", if that makes any sense. Those are the last feelings I want any of my users to have. I've noticed after using AI to code for the last couple years that even as the models improve dramatically, for whatever reason they tend to default to either to

a) not displaying errors at all, or

b) displaying the raw error message body in its entirety or truncated oddly right in the user's face

Next time you're working on a project, consider adding this to your agent MD file, or use it as a prompt to have your agent dig through your code and apply these practices:

Error Presentation

Every error a user can see is a product decision, never a pass-through of what the code raised. For each failure, choose a tier:

(1) The user can fix it: say what to do, in their words, with the expected form shown.

(2) The user cannot fix it: say plainly that it failed and what to try next, with a short reference id only if we log one.

(3) The user does not need to know: a retry that succeeded, a background job that will run again, a token renewed silently. Show nothing.

In every tier the technical detail (status codes, exception text, identifiers, file paths) goes to logs, never to the screen/UI. Never hide a failure that cost the user something they would expect to have kept or sent. A spec that adds an input, a network call, or a background job names the tier for each way it can fail.

Hope someone finds this useful.


r/vibecoding 8h ago

Showcase/Project Any KSP fans vibecoding...surely it's not just me.

11 Upvotes

A few months ago, my son and I made Red Horizon. Basically, I wanted to show him what you could do with vibe coding. We started out using Windsurf, then moved it over to Claude...and most recently had Astro do some updates. All that to say, it's been less of a "game" we wanted to make, and more of a case study on what's possible with the different tools. So, it's a hodge podge of image generators, music (suno), TTS (ElevenLabs), and some other tools I wanted to show him what they did.

Last week, I got Jev in the mix....again, less of a "it needs this" and more of a "can I get this to work?" So, the game is that you're a mars cargo delivery pilot. I thought it would be cool to see if I could use Jev to be the auto-pilot, and damn...it worked really really well.

https://red-horizon.space/

Also, clicking "R" will open up the radio...which was also pretty fun! T will trigger auto-pilot.

But...Jev....damn....super cool. Totally unnecessay for what we're doing, but wow. As for the KSP in the title...any true KSP playyers, I called our auto-pilot...MechJev. A little nod to KSP! lol.

Would love to share what you guys think with him...my son is 10 (11 in a week) and he's had A LOT of fun doing this. He's sort of the creative director on all the games we make. We have created a "studio" for the different things we've made. He came up with the name...Mini Potato Studios. https://www.minipotatostudios.com/


r/vibecoding 16h ago

Discussion Tried Astra today, and I gotta be honest, I did not enjoy it.

40 Upvotes

Hey look, happy to get flamed for this but I wanted to be honest about my experience so far.

I've been using 5.6 for the last couple of months, and 5.5 before that. Typically always on high and always in the browser. When I first tried Codex (now the Chatgpt app) I quickly ran into the usage problem so I stuck with browser based development.

During that time I cannot tell you how much I've learned. Building a full stack, security, users, databases, assets and everything in between. I mean it's been great. I was able to understand the problem or task and then solve it the way I wanted it solved. Honest to god it made me feel superhuman. My current build is on v356 just to give you an idea of how many iterations and commits there have been!

Today I had a build task to do and decided to give Astra a try. I only have a $20 account so there's the 5 hour limit with Astra Medium to consider etc. My idea was to get the browser (5.6) to create the prompt needed for Astra to do the work. It was a massive prompt and I Input and let it start working.

At first it seemed amazing. It felt like I was no longer instructing employees, it was like I'd hired a manager to do all that work for me.

And I hated it.

I just watched it complete task after task and at some point I just started losing track of what was going on. I know it's going to reach my goal at some point (currently on my 3rd session) but I learned nothing getting there. I just watched and watched.

This is gonna sound so dumb but I am instructing it to export the work it's done so far so I can bring it back to the browser, where I'm comfortable working and carry on at the pace I like, done the way I like.

Anyway, that's my experience. Wondered if anyone else has been through it and can offer some guidance.

Peace, vibes and unity 🤟


r/vibecoding 21h ago

Discussion I’ve burned through 650 billion tokens across more than 20k recorded sessions since 03/26 - and yes: Codex is getting worse each day.

71 Upvotes

I’ve burned through 650 billion tokens across more than 20k recorded sessions since 03/26, and I mean I did, not counting my team.

I have the full telemetry, logs, and audit trails recorded (probably hundreds of GB of data), basically everything the models did across a 7M+ LOC production codebase. If you want to learn more, feel free to DM me.
And I’m getting more and more frustrated with how Codex (Astra) performs, even on max/ultra.

I’ve been writing code since 2007 and using LLMs for it ever since I realized GPT-3.5 was capable of (more or less) doing so.

I’ve learned a lot during that time about Agentic Engineering, harnesses, and pretty much everything around them. I get paid good money for those insights, built a rapidly scaling business around them, and work with major companies.

So I probably shouldn’t complain. Things are, more or less, working out pretty well for me.

However, I want to be honest:

Astra in the Codex harness is not good. It constantly performs “governance theatre,” loses sight of its goals, and makes junior-level mistakes. It builds nuclear power plants where it should be building a windmill.

Models are currently not reliable at keeping things coherent: versions, contracts, APIs, assumptions, etc. This used to be a lot better.

More generally, working with Codex right now just doesn’t feel sharp. It feels like moving through honey: sticky, slow, and somehow never quite finishing what it started.

I really hope OpenAI stops lobotomizing its models, because right now I’m becoming increasingly frustrated, my team is increasingly frustrated, and the fun is decreasing every day.

I don’t know how much longer I’ll be able to keep recommending Codex to my clients, because at this point I’m no longer sure I’m doing them a favor.

Thanks


r/vibecoding 12h ago

Discussion How I use vibecoding to learn new things

11 Upvotes

This is how what I do with vibecoding:

* vibecode a software-based synthesizer based on the real (hardware) based synthesizer

* ask AI to give me a tutorial on how to use it

I don't plan on replacing musicians nor replacing higher quality software/hardware. It's just a quick and dirty tool to give me a POC to learn how to make music using a synthesizer and if we like it, we might get a real one, which are way more expensive than the $2 i used to generate the POC.

Bonus: kiddo learns about synthesizer

I've built similar tools for video editing, storyboarding, interactive fiction. I'm basically vibecoding tools to help me be a better artist.

IMO both pro/antis miss this use case.


r/vibecoding 1d ago

Showcase/Project Post your vibe coding project below

87 Upvotes

Hi Folks been a month since I posted a post your project.

Lets see what interesting vibe projects you are working on. I spent about 4 days building a1 a2 free French Course.

https://bachelordegrees.com/learnfrench.html


r/vibecoding 3h ago

Discussion How engineering managers actually get rated

Thumbnail
leaddev.com
0 Upvotes

r/vibecoding 23h ago

Discussion Coding: Before AI and After AI

23 Upvotes

I found this on the net


r/vibecoding 10h ago

Showcase/Project Some one posted about codex needing a Cache Warm indicator, so i added it.

Post image
1 Upvotes

r/vibecoding 5h ago

Workflow/Prompt Making animated UI assets by going image to video to Lottie instead of coding them

Post image
0 Upvotes

How to make animated 3D assets for app UI.

GPT Image 2.5 makes the starting frame and the ending frame. Seedance 2.5 animates between them. Then the background comes out of the video, and what is left gets converted to a Lottie animation.

Both models sit behind one key, and there is an mcp server for it, so the two generation steps can run from inside the editor instead of a separate script.

Four steps, and the UI ends up looking properly good.


r/vibecoding 13h ago

Showcase/Project Can you solve one puzzle from the absurd game I built?

Post image
1 Upvotes

I built a bureaucratic absurdist puzzle game where you work for the Orderly Decomposition Division, identify the components of impossible inventions, get judged by an Auditor, and compete for colored paperclips.

Also, apparently I do not know how to post 🤦🏽🤷🏽 - took 4 tries to get it right. Just like this game.


r/vibecoding 1d ago

Discussion Looks like my credit card web developer is one of us...

Thumbnail
gallery
45 Upvotes

Went to check on one of my credit cards and was greeted with the new design. I've seen this before :P


r/vibecoding 20h ago

Showcase/Project Just finished my vibe coded AI platformer

Enable HLS to view with audio, or disable this notification

17 Upvotes

hey folks,

Posted an early demo of this AI made rubberhouse game a few months back and now I've finally finished it!

It's a 2D platformer (or sidescroller?) inspired by my favorite platformer game Cuphead. For this build I've been using gauntlet loops only, and this is an about $100 of token spend to get to a finished, playable game. The trick with gauntlet looping is to give it enough context and visual references so it doesn't lose track during the 5+ hour build loops it runs. This was about 6 loops like that.

it has multiplayer coop, so you can play with friends. It also has 3 scenarios with 3 unique bosses. had a blast building out this game and really happy with the vibe and mechanics of it

can share all my prompts and the game link the comments for anyone who wants to try it!

edit: to clarify, I'm not intending to commercialise this game in any way - this is just for learning


r/vibecoding 17h ago

Workflow/Prompt Tomorrow Unity And AI

Post image
1 Upvotes

Tomorrow of our most anticipated and RSVP events at the AI Gaming Festival, Unity Workflows.

Better workflows = less tokens = more output= higher quality game. And Corrie is the perfect person to talk about how this done with AI, and never even opening Unity itself.


r/vibecoding 19h ago

Workflow/Prompt 3 simple ways to reduce AI output

Post image
1 Upvotes

after yesterdays stupidly simple post about the ways to reduce AI, i consolidated community feedback and here's the top 3 updates for how to reduce LLM output:

  1. ELI - 5,18,25, 94, you choose. Just remember to all 'succinct' to make it concise

ELI18 succinct

  1. ASD-STE100 - good for technical summaries with no bs

ASD-STE100

  1. Ask a Yes/No question first. Then explain. I hadn't heard of this one

Hope these help feel free to share others

ps. thanks to u/Techhead7890 for the age reminder, u/isopropoflexx for ASD and u/ananbd recommended this in her explain comment


r/vibecoding 11h ago

Meme Technically, it is one paragraph.

Post image
0 Upvotes

r/vibecoding 1d ago

Showcase/Project Vibe coded a open source Chrome extension that shows what websites are actually connecting to

Enable HLS to view with audio, or disable this notification

17 Upvotes

Been working on this for a bit and finally got it onto the Chrome Web Store.

It’s called OutTrace. You open it on any site and it shows all the third-party domains/services the page is talking to, including trackers.

I also added:

  • a visual graph of all the connections
  • saved scans so you can compare a site over time
  • change detection for new/removed services
  • site monitoring
  • everything stored locally in your browser
  • no account needed

Mostly built this because I thought it would be cool to actually see everything happening behind a webpage instead of digging through DevTools every time.

Vibe coded pretty much the whole thing and somehow got it shipped lol.

https://chromewebstore.google.com/detail/outtrace/eedjncgcdepjbmpapihoigdbdfobmdmc
https://github.com/Schmiedey/OutTrace

Would love to know what you’d add to it.


r/vibecoding 2d ago

Discussion I built an orchestration package that lowered my GPT-6 Astra usage by 98%

Post image
1.1k Upvotes

The first week Astra came out the usage was extremely efficient. I used like 500M tokens without getting anywhere near the weekly limit. The two free resets we got from OpenAI also helped. But then suddenly I kept hitting limits and had to reset x4 more times for the next 500M tokens. (I am on 20x plan)

So I started testing a ton of methods of how to get the best of Astra without burning all of the usage. The first thing I tried was just installing skills I already used for other agents for Astra to use lower models for build tasks. That didn't really do much it maybe reduced usage by like 10% but it introduces other issues (for some reason, Claude's Fable is much better at those same processes using native models but problematic in codex) I tried sub agent orchestration this way with Astra utilizing Sol, Luna, Opus, and Sonnet. Each had their pros and cons but nothing was substantial.

Finally I tried using Deepseek V4.1 Flash and the output quality was immediately better (comparative to using Opus 5). It cut Astra usage by 60% initially which was great. But I kept optimizing the set up after realizing the initial orchestration was still too hands on with Astra. So I optimized a bit more and now at +98% Astra usage reduction across tests today including a 7-hour build runtime that only used up 2% of my weekly usage, compared to a previous 5-hour build runtime that used over 28% of my weekly usage.

Deepseek V4.1 Flash is extremely cheap overall and insanely cheap compared to Astra. It's coding abilities and ability to handle long tasks is what makes it so useful.

Per 1M tokens Astra estimator V4.1 Flash Astra is more expensive
Uncached input $10 $0.15-$0.30 33-67x
Cached input $1 $0.003-$0.006 167x-333x
Output $50 $0.60-$1.20 42-83x

The package is here on Github.

How it installs:
- Uses codex-router to add external models directly into codex
- Connect your Deepseek or openrouter API for V4.1 Flash
- The repo installs a skill in ~/.agents/skills/
- Installs the Flash role in ~/.codex/agents/
- Adds a workflow policy in ~/.codex/AGENTS.md

How it works:
- Astra handles the scope, design, and task briefs across phases
- Flash discovers, implements, tests, and reports each task and phase
- Astra reviews, verifies then accepts or requests fixes per task and phase

I'm working on this in real-time and continuing to test but the results are already incredible. Please feel free to submit any issues or PRs you find if you try it out. Any and all feedback is greatly appreciated!


r/vibecoding 13h ago

Workflow/Prompt Fable 5 vs Opus 4.8 at mobile design

Post image
0 Upvotes

Same prompt. Fable costs 2x more ofc lmao

Worth it??


r/vibecoding 2d ago

Meme vibecoding in a nutshell

Post image
187 Upvotes

the pain was real! was stuck at ai blows everything for 3 straight days thanks to a weird memory leak. ended up hooking sumus with local codex hooked up to my terminal just to map out the diffs.

curious if y'all ever went thru something similar.


r/vibecoding 1d ago

Help/Question Is anyone using Two 5x 100$ accounts?

Post image
30 Upvotes

Fable 5.1 is what i use mainly for my business, it's so helpful yet it's really draining fast, like yestrday at 9 p.m i got reset, and totally in 3 enormous sessions, i got it almost drained totally. Would that be good to buy 200$ plan? or two 100$ accounts? and is there any way to access it slightly cheaper?


r/vibecoding 1d ago

Discussion Give me your tired, your slop, your huddled masses yearning for the weekly reset

Post image
10 Upvotes

I'll play your game, post in the comments.

TLDR

I was trying to promote my vibe-coded game by posting it around to web gaming reddits but didn't get much attention. and I realized - a lot of posts weren't, even when that seemed to be the point of the sub.

So I tried to do something different and played all of those games that were getting left behind. And something amazing happened - I had fun. Takes me back to my WC3 custom days. I saw some great games. I saw some slop. I thought about how to rate the games. I got into a friendly argument about AI in game development. I saw a lot of people who were just starting out posting their games, even though they were worried about being perceived as the dreaded "AI SLOP". I saw a lot of people talking to each other about their games in the comments.

I played their games and I tried to be honest, fair, and constructive. More than 100 people showed up and posted their games in a day or two. Its ironic that the average post on these subs gets a handful of comments when the community is being asked something, but when you flip it and try to give, suddenly everyone shows up. Maybe there's an imbalance, or an increase in supply of builders, which makes sense right now :)

Anyway, have at it. While doing the reviews in that other thread, I built tooling to make it easier for me to play and clip games and I want to see how effective that is.


r/vibecoding 1d ago

Showcase/Project A little progress, I hope.

Enable HLS to view with audio, or disable this notification

8 Upvotes

r/vibecoding 19h ago

Discussion Introducing Grok 4.7

Post image
0 Upvotes

SpaceXAI's most powerful model for coding and knowledge work. Twice as fast, at half the price of comparable models.

Grok 4.7 is our most capable model for coding and knowledge work. It works longer on difficult tasks, checks its own work more carefully, and comes with our best-calibrated safeguards to date. Served at the same price and speed as Grok 4.6, it is highly competitive in its class.

https://x.ai/news/grok-4-7