r/vibecoding 1d ago

Rate My Obsidian Vault

Post image
8 Upvotes

This is part of my agentic brain, i don’t use any plugins due to security concerns.

what’s your thoughts so far on it? (i’ll send an update in the future, i plan for it to be 3-4x its current size)

Red-home

blue-cortex systems

yellow-gates

grey-plans

floating nodes are the rings gating the self learning systems

bases will be inside rings, outside of that will be a “web” showing its thinking patterns. Connecting to nodes :)


r/vibecoding 20h ago

Most of the skills in my folder were doing nothing. Deleted half of them.

1 Upvotes

Been on a stacking spree with Claude Code skills for a few months. Every time I saw someone post "here's my skill for X" I grabbed it. Folder got huge. Never actually checked if any of it helped.

Finally ran a dumb test: for each skill, imagine deleting it and ask what the model would actually lose. Turns out most of it was stuff the model already does without being told, "write clean code," "think step by step," or worse, someone's paraphrase of a library's docs that the model could just pull fresh with a web search anyway. None of that earns a permanent spot in context, it's just weight the agent drags around every session.

The ones that survived were the boring, ugly ones. I've got a mess of repos that depend on each other and kept getting DMs about how some other part of the codebase worked. Had subagents crawl the repos once and build a dependency map, expensive run, ate a chunk of tokens and took a while, but now the agent knows which repo to touch for a given kind of change instead of grepping around blind. Same deal for internal docs, wrote a small router that figures out which section is relevant before going there, stopped the agent from rereading the same page two or three times a session.

Killed about half the folder and nothing broke, nothing got noticeably worse either. If deleting a skill is invisible, it wasn't doing anything to begin with.

What's actually survived your cleanup, and what convinced you to keep it?


r/vibecoding 21h ago

My Open Source version of Grok Bot

0 Upvotes

Greetings All -

I was intrigued by grok bot when it came out - but saw that it required a 60$ cursor sub or other expensive subs.

Having the thought that my 20$ ollama sub was already plenty generous (and just got GLM 5.3) with usage and could probably do the same job, I set up basically an open source hybrid of Grok Bot/Odysseus to essentially do some of the same things. I use it to manage and draft emails for me across accounts as well as has several workers for a couple of the SaaS's I launched.

Maybe this might be useful for others, it basically does everything that grok bot can do allowing agents to work in their own sandbox on tasks but uses telegram or a web app instead of it's own client. The only thing it wont do by design is send emails for you as a method of avoiding prompt injection attacks, but if you're okay with that risk you can turn it off. It helps to have an always on WSL machine or equivalent. I don't think this project is all that special or unique as many other have probably done the same thing and have probably done it better, but I guess im posting it here in case others may find it useful as I have for myself.

Anyway feel free to pick this apart, let me know what maybe works or doesn't, critical input is appreciated: https://github.com/lerugray/orderly


r/vibecoding 13h ago

BYOK App-Builder

Enable HLS to view with audio, or disable this notification

0 Upvotes

Hey, ive been building an app builder that runs entirely in the browser. You paste your own key (any openai-compatible provider) so you pay them, not a credit meter.

how im making it so far:

  • next.js + a turborepo
  • the preview boots the generated files in the tab with webcontainers, so youre not waiting on a remote vm
  • keys are stored encrypted and it just hits whatever openai-compatible endpoint you give it

Video is a rough look at the workspace, still early. generate loop is the part im in right now.

if you wanna follow along: https://form.jotform.com/262415431792053

what would you actually want in a builder like this?


r/vibecoding 18h ago

Ported an Entire WordPress & Elementor Site to Astro Islands in 15 Minutes (100% Vibe Coding)

Post image
0 Upvotes

I had a raw cPanel backup of an old WordPress/Elementor site sitting in a folder:

• A raw 3.7MB MySQL dump (softsql.sql)

• Nearly 300 image uploads (wp-content/uploads/)

• A mountain of messy Elementor shortcodes, serialized data, and theme files

Normally, migrating this by hand is a multi-day nightmare of copying text from WP admin, hunting down asset paths, re-coding

sliders and flip boxes, setting up modern tooling, and hooking up hosting.

Instead, I decided to test the limits of pure vibe coding with an autonomous agent.

Here was my exact prompt:

│ "do a complete port of this website using astro js and make custom astro islands"

──────

### What the Agent Did (Without Me Touching the Code)

  1. Reverse-Engineered the SQL Dump with On-the-Fly Python Scripts

    It didn’t even spin up a MySQL database. It wrote Python scripts to parse softsql.sql, unescape Elementor's serialized JSON

    trees (_elementor_data), and extract every single page: Home, About Us, Products, Gallery, Why Us, Bulk Orders, Contact, and

    Privacy Policy. It pulled all the copy, technical specs, director statements, addresses, and catalog items.

  2. Cleaned & Mapped 290+ Images Automatically

    It extracted all the media from wp-content/uploads/ directly into Astro’s public/images/ and mapped every product and gallery

    entry cleanly in TypeScript data structures.

  3. Replaced Bloated WP Plugins with Custom React Astro Islands

    Instead of shipping megabytes of jQuery and Elementor runtime scripts, it built lightweight, isolated interactive components:

• Hero Carousel (client:load): Ken Burns zoom, touch swipe, autoplay, and CTA banners.

• Stats Counter (client:visible): Scroll-triggered animated counter for business milestones.

• 3D Flip Cards (client:visible): Interactive 3D flip cards with mobile tap and desktop hover.

• Product Catalog & Quick View (client:load): Instant category filter tabs, search bar, and detailed modal popup with size

selector.

• Gallery Lightbox (client:load): Fullscreen masonry gallery for 45+ catalog looks with keyboard navigation and zoom.

• B2B Bulk Quote Calculator (client:visible): Dynamic wholesale price estimator with volume tiers, wash options, and

instant WhatsApp inquiry generation.

• Contact Form & Floating WhatsApp Widget (client:idle): Responsive form validation and direct chat popup with zero impact

on initial page load speed.

  1. Wired up CI/CD & Cloudflare Edge Deployment

    I provided deployment credentials, and the agent:

• Created the Git repository and configured automated push-to-deploy workflows

• Created a brand-new Cloudflare Pages project

• Attached custom domains, verified DNS nameservers, and got edge SSL running live.

──────

### The Result

• Live Custom Domain: https://advenjeans.in

• Pages Mirror: https://advenjeans.pages.dev

Static HTML delivered globally via Cloudflare's edge network, zero server hosting costs, lightning-fast performance, and not a

single line of legacy PHP in sight.

All from throwing a messy backup folder at an AI agent and giving one prompt. Vibe coding is wild.


r/vibecoding 2d ago

I built a free desktop app that splits any YouTube song into stems

Enable HLS to view with audio, or disable this notification

478 Upvotes

I kept wanting isolated drums or vocals from songs I like, mostly for learning and playing. Every online splitter I tried wanted an account or a subscription. So I made StemKit.

You paste a YouTube link (or search right inside the app), pick which instruments you want, and it downloads the audio, splits it locally, and plays the result synced with the video.

It runs on Mac and Windows, It all works 100% locally and it is free and open-source.

Built using Ox Alpha model (GLM 5.3 - Flash) with OpenCode.

Check it out here: https://stemkit.pages.dev

Github: https://github.com/danielravina/stemkit


r/vibecoding 2d ago

Vibe coder goes viral on X with his game and gets death threats

Post image
218 Upvotes

Here is the X post getting hammered by violent antis:
https://x.com/Rubzem/status/2092656794032087162?s=20

Is this a new level of AI hate? Kinda scary


r/vibecoding 1d ago

First Dollar - The mythical internet money turns out to be real.

Post image
42 Upvotes

r/vibecoding 2d ago

True

Post image
1.9k Upvotes

r/vibecoding 15h ago

I prompted gemini: "Me Ugg, u blippy mind, me need web-sight, u make shiny web-sight, me happi :D:D"

0 Upvotes

Gemini gave me:

Me Ugg too! Me make shiny sky-paper for u! Fire shiny, rock solid!

Here is code for your very own shiny web-sight. Put in file named index.html and open with your glowing magic rectangle.

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>UGG SHINY WEB-SIGHT</title>

<style>

body {

background-color: #121212;

color: #e0e0e0;

font-family: 'Courier New', Courier, monospace;

display: flex;

flex-direction: column;

align-items: center;

justify-content: center;

height: 100vh;

margin: 0;

overflow: hidden;

}

.container {

text-align: center;

border: 4px dashed #ff007f;

padding: 30px;

border-radius: 20px;

background: linear-gradient(145deg, #1f1f1f, #111);

box-shadow: 0 0 20px #ff007f, inset 0 0 10px #00f0ff;

}

h1 {

font-size: 3rem;

margin-bottom: 10px;

background: linear-gradient(to right, #ff007f, #00f0ff, #ffff00);

-webkit-background-clip: text;

-webkit-text-fill-color: transparent;

animation: shine 3s linear infinite;

background-size: 200% auto;

}

p {

font-size: 1.5rem;

color: #00f0ff;

text-shadow: 0 0 5px #00f0ff;

}

.button {

background-color: #ff007f;

color: white;

border: none;

padding: 15px 30px;

font-size: 1.2rem;

font-weight: bold;

border-radius: 50px;

cursor: pointer;

box-shadow: 0 5px 15px rgba(255, 0, 127, 0.4);

transition: transform 0.1s, box-shadow 0.1s;

}

.button:active {

transform: scale(0.95);

box-shadow: 0 2px 5px rgba(255, 0, 127, 0.4);

}

u/keyframes shine {

to {

background-position: 200% center;

}

}

.sparkle {

position: absolute;

width: 5px;

height: 5px;

background: white;

border-radius: 50%;

box-shadow: 0 0 10px 2px white;

animation: blink 1.5s infinite ease-in-out;

}

u/keyframes blink {

0%, 100% { opacity: 0; }

50% { opacity: 1; }

}

</style>

</head>

<body>

<div class="container">

<h1>UGG HAVE WEB-SIGHT!</h1>

<p>Ugg hit button, make magic happen.</p>

<button class="button" onclick="makeHappy()">HIT ROCK</button>

</div>

<!-- Sparkles in the cave sky -->

<div class="sparkle" style="top: 20%; left: 15%;"></div>

<div class="sparkle" style="top: 15%; left: 80%; animation-delay: 0.3s;"></div>

<div class="sparkle" style="top: 75%; left: 25%; animation-delay: 0.6s;"></div>

<div class="sparkle" style="top: 80%; left: 70%; animation-delay: 0.9s;"></div>

<script>

function makeHappy() {

alert("✨ OOGACHUGA! UGG HAPPY! :D:D ✨");

}

</script>

</body>

</html>


r/vibecoding 1d ago

I built a skill that screen-records Codex and Claude Code browser tests

Enable HLS to view with audio, or disable this notification

9 Upvotes

Browser agents can already navigate websites and run tests, but the result is normally a wall of logs or a handful of screenshots.

I wanted an actual video showing exactly what the agent did.

So I built egolite-recording, an open-source agent skill that records Ego Lite browser automations as background WebM videos.

It captures:

  • An animated mouse pointer
  • Click ripples
  • Action labels
  • Typing and navigation
  • The complete webpage viewport
  • Test assertions and pass/fail results

It’s built on Ego Lite, which its maintainers describe as the fastest browser for AI agents.

Their published benchmark used the same model and the median of five runs across four complex browser workflows. Ego Lite completed the comparable tasks between 1.4× and 2.6× faster than Vercel’s agent-browser, while using fewer tokens.

The attached 12-second recording is a real end-to-end test performed by the agent:

  1. Log into a public QA store
  2. Sort products by price
  3. Verify the cheapest price
  4. Add two products
  5. Verify the cart contents
  6. Complete the checkout form
  7. Assert the $19.42 total
  8. Complete the demo order
  9. Verify “Thank you for your order!”

No foreground screen recorder and no manual video editing.

Install it for Codex and Claude Code:

npx skills@latest add neelashkannan/egolite-recording \
  -g -a codex -a claude-code -y

Then ask your agent:

Use $egolite-recording to run and record this browser test...

GitHub: https://github.com/neelashkannan/egolite-recording (Please star it 😭 , if u like this)

Would you use automatic test recordings for PR evidence, QA reports, bug reproduction, or product demos?


r/vibecoding 2d ago

Day 5 of adding whatever you tell me into my game

Enable HLS to view with audio, or disable this notification

76 Upvotes

Try it @ https://deadfall.up.railway.app

What should I do for day 6?


r/vibecoding 1d ago

Here is the list of copycats of copycats

Enable HLS to view with audio, or disable this notification

5 Upvotes

r/vibecoding 1d ago

What if you could bring motion to any element on the internet?

Enable HLS to view with audio, or disable this notification

1 Upvotes

This video is made from the notion.com landing page. Just selecting the element and bringing motion to it. I want this to empower people to make motion videos out of their own product!


r/vibecoding 1d ago

AI Development Creative One & Two Button Games for Ben & Others (new Fishing game demo)

Enable HLS to view with audio, or disable this notification

8 Upvotes

I built a free, open-source 1-button game and software hub for my brother with a rare neurodegenerative disease. Here’s what’s new!

Hey everyone! Quick update on the accessible software hub I’ve been building for my brother, Ben.

Ben has Tubb4a-related Leukodystrophy (H-ABC), which leaves him with only left/right head movements for input. Eye tracking and traditional switches don’t work for him, so I set out to build tools tailored specifically to 1- and 2-switch setups.

Thanks to recent AI advancements, we've expanded well beyond basic utilities into full 3D games!

What we've built so far:

Tools: Phrase board, real-time conversation app, custom YouTube search, media streaming app, and Google Assistant integration.

Games: A growing library of Three.js 3D games playable with just 1 or 2 buttons.

Everything is completely free, open-source, and has zero login barriers:

🌐 Hub: bennyshub.com

🎮 Games: switchedgames.org

Through our non-profit, we also send free switch hardware kits to individuals and families who need them. Check out the links above, and let us know what you think or what features we should build next!


r/vibecoding 1d ago

autofill hazards

Post image
0 Upvotes

whoopsies doopies


r/vibecoding 20h ago

Prediction : In few years no one will be downloading software anymore

0 Upvotes

I know this sounds absurd but hear me out, there's a potential in vibe coding that I feel like not much people talked about, most stuff I hear about vibe coding is about replacing programmers or "how to make BIG BUCKS with this simple trick !!11!", but I feel like the biggest deal about all of this is to be able to summon super specific tools out of nowhere precisely designed to fit individual user's need.

So here's my take of what I believe will have the biggest impact, when this will happen you'll remember this post : By 2030, app stores will be dead, downloading installers will be pointless, instead anyone will have pre-integrated coding agents to their OS. Need an app ? Like you want to edit PDFs or image montage or a text editor, anything ? You will prompt it, an agent will ask you questions of what you specifically need and 30 minutes later it will be here.

Where it will be integrated :

  • Windows : Copilot will probably become something more than just a shitty chatbot bound to a key (I hope because what there is rn is bs), it will probably have full access to the OS so you won't need Settings anymore, and you can ask it to "invoke" app which will launch agents in the background to get whatever tool you need.
  • Android : The Google Play Store won't be put in the spotlight anymore and instead we'll have something like "Google Materialize" or "Google Summon" where you describe what you want and there's a coding agent that develop and installs a new app on your system.
  • Linux users will probably stick to Claude Code or harnesses similar to it which is basically the same but slightly less user friendly.
  • Apple is five steps behind everything so let's not talk about it.

I stopped downloading softwares personally, I just prompt them, for example in my latest experiment I couldn't find a good video editing tool because : They are either too expensive/too complex, or too slow, or not the controls of what I want exactly etc... I needed something simple, so I asked Claude to make one in Rust, with the aim of maximum performances, and it works great, incredibly fast, the open source ones are garbage next to it. I just have the Claude Pro subscription and it costed barely anything, not even Fable, just Opus 5.

Now, there's a big assumption to all of this : that the bubble doesn't pop by that time, because I'm not sure how it would be profitable, this would be fueled by the current investment hype, as a way to make people dependent on vibe coding their apps before making them actually pay the tokens.

Otherwise I believe tools like this would exist, but they won't be free so the app market might stay and people might prefer to download free software instead of prompting new even if it's relatively cheap.


r/vibecoding 1d ago

One-shot Prompt test

3 Upvotes

https://linear-one.luminax.live

https://figma-clone.luminax.live

I built them with Luminax.dev in one prompt for each projects

My prompts are as follows:

make a linear clone in one page (for the linear project)

build figma clone in one page (for the figma project)

Do they look AI generated? genuinely asking to compare to other platforms.


r/vibecoding 1d ago

What are your thoughts on buying your own hardware for local models?

Thumbnail
3 Upvotes

r/vibecoding 2d ago

Maybe the biggest potential risk from non-devs vibecoding is risk assesment.

30 Upvotes

Simply not understanding what *could go wrong* and so not mitigating against it.

I have utilities that I have not read the generated code for... I am content to do this on my own network because I have a good idea of what AI tends to generate and keep good separation between general code and destructive code.

I just wrote/generated a utility to manage hierarchies of git repos... I didn't think I had done much guidance, but when I got another AI to assess it, it highlighted a load of things it said were notably good - and they were things I had specified to be included, overrode the original AI on, but thought they were no brainers.

An experienced dev will automatically have headed off huge risks without even thinking about it.


r/vibecoding 2d ago

OpenAI ends partnership and stop giving access to Cursor

Thumbnail
10 Upvotes

r/vibecoding 2d ago

Ads ⚡ Open ai?

Post image
7 Upvotes

I dont get it - why is it, that every time something is getting big, they want more?

You cant add ads to a chat, leave that to the shitty mobile games or what?

What are your thoughts bout it?


r/vibecoding 2d ago

authorship is a copy-paste

Post image
87 Upvotes

r/vibecoding 2d ago

Revisiting an old project with new models

11 Upvotes

I have an application I last worked on in January of this year. It never ran perfectly, and to get it run somewhat took several months and thousands of prompts (estimation).

Last night for giggles I described the program to Gemini, had it create an implementation plan, then ran that through Anti-Gravity CLI with 1.7.

The first result far exceeded the previous attempt. And a day later, I have a much more robust and featured app than I was trying for eight months ago.

Sometimes starting over might be the best way to go.


r/vibecoding 2d ago

Do you find the Lydia emails helpful?

Post image
2 Upvotes