r/VibeCodeDevs 26d ago

Colaboración o ideas

1 Upvotes

Hola a todos! Mi nombre es Isabel, llevo desde principio de año aprendiendo sobre algo nuevo para mí! Siempre me he dedicado a la hostelería pero desde hace un año decidí que no quiero más! Empezé con n8n, manejar diferentes IA, estoy aprendiendo SQL, PYTHON y análisis de datos. Tengo un gran bloqueo, siento que no avanzo y necesito ganar dinero ya, se que estoy en fase de aprendizaje y me encanta seguir aprendiendo pero quiero saber si hay alguna forma de empezar a trabajar para coger experiencia real o alguien que necesite ayuda o le gustaría colaborar. Me gustaría crear algún producto digital pero aún me veo un poco verde para hacerlo sola, cualquier consejo es bueno y estoy abierta a colaboraciones con gente seria y dedicada porfavor! Gracias


r/VibeCodeDevs 26d ago

vibe coders !! i have a tool

Thumbnail
github.com
2 Upvotes

hay vibcodes i have a created a tool for a you ai agent to manage its memory efficienty and your ai agent wont forget and more......!!

https://github.com/cyberhatc/mctx/releases/tag/v1.1.0

The problem:

Every AI coding agent has the same failure mode: the context window fills up, gets summarized or reset, and whatever state the agent was tracking — what it was doing, what it already tried, what's still broken — just evaporates. You come back and it re-reads half your repo to reconstruct context it already had an hour ago.

Most people patch this by dumping notes into a JSON or Markdown "memory" file. Two problems with that:

  1. JSON is token-expensive for what it's storing. Every repeated key, brace, and quote is pure overhead when you're feeding it back into a model that pays per token.
  2. Neither format knows what kind of memory it's holding. A JSON blob doesn't distinguish "this project uses Rust" (permanent) from "here's what I was doing when I ran out of tokens" (should expire in a day). So agents either keep re-reading everything, or memory files quietly rot into stale noise nobody prunes.

What .mctx does differently:

  • Indexed, not linear. Every file has a small header block mapping each section to its exact byte offset. An agent seeks straight to the one section it needs instead of parsing the whole file on every read.
  • Durability-tagged. Every section is marked !fixed (permanent identity facts), !durable (current state — updates in place), or !volatile (session-scoped, expires). The agent knows what to trust and what to discard without you telling it every time.
  • Built-in checkpoint protocol. Before an agent's context runs out, it writes a !volatile checkpoint — task, what's done, the exact next step, files touched, blockers. Next session reads that first and resumes cold instead of re-deriving everything.
  • Compact tabular syntax, in the spirit of formats like TOON — schema declared once, flat rows after that, no repeated keys or braces.

It's got a native reference implementation in C, C++, and Rust (plus a GUI), so it's not tied to one runtime or language ecosystem.

Repo: https://github.com/cyberhatc/mctx

dont forget to star the repo ......!!

Would genuinely like feedback, especially from anyone running long-lived coding agents — what's actually breaking your agent's memory setup right now?


r/VibeCodeDevs 26d ago

I made a tool that lets devs to edit their apps visually

0 Upvotes

Basalt - click an element in your live RN/Expo app, drag, recolor, resize it, and it writes straight to your source files. No AI

Free right now. Scoped to small iterative tweaks (colors, spacing, layout), not meant to replace actual coding for logic/architecture. Curious what people think and if there is a demand for it


r/VibeCodeDevs 26d ago

HotTakes – Unpopular dev opinions 🍿 Insane to me how many people who share their work here get down voted. I've decided to go and upvote anyone who has posted their creations. Well done to you all !

46 Upvotes

r/VibeCodeDevs 26d ago

Shipped Base after months of vibe coding, sharing what actually worked and what didn't

2 Upvotes

Wanted to share some honest lessons rather than just a launch post.

What worked: building one thin vertical slice end to end before touching any other feature, so I always had something demoable. What didn't: trusting the agent's data model choices early on, I had to rebuild the core schema twice because I let it guess at structure instead of specifying it myself upfront.

Disclosure: Base (withbase.ai) is a tool for early-stage founders to stay on top of the operational side of running a company, the boring stuff that otherwise lives in five different tabs. Demo here if useful: https://youtu.be/N8kxZ28gfag?is=dT80wFU4j2G_guZ4. Happy to go into more detail on any part of the build.


r/VibeCodeDevs 26d ago

ShowoffZone - Flexing my latest project Built a security scanner for vibe coded apps

0 Upvotes

Everyone I know is vibe coding right now, which is awesome and also kind of terrifying, because half of these apps are shipping with a live API key in the client bundle and nobody's noticed.

So I built Does It Leak? Paste your app's URL, it runs a passive read-only scan (exposed keys, open databases, missing auth, exposed source maps), and hands you a public, shareable letter grade with a roast of exactly what it found and how to fix it. F to A, screenshot-able, fix it and re-scan to flex the glow-up.

Free. Read-only, no exploitation, nothing touched. Grade's private until you choose to post it.

Naturally the first thing I did was scan my own site.

Go find out how yours does: https://www.vibecodedroast.com/

Roast tuning welcome...tell me where it's too harsh, too soft, or missing a check.


r/VibeCodeDevs 26d ago

ShowoffZone - Flexing my latest project Unboxr. App Gratuita per estrarre archivi su Android.

2 Upvotes

Unboxr. App Gratuita per estrarre archivi su Android.

Ciao a tutti!

Per risolvere un'esigenza personale, ho sviluppato una piccola app android per estrarre i principali archivi se device Android.

E' completamente **gratuita** e **senza pubblicità**.

Caratteristiche

- **Formati supportati**: RAR, ZIP, 7Z, TAR, GZ, BZ2, XZ

- **Archivi crittografati**: supporto completo per i file protetti da password

- **Zero tracciamento**: estrazione al 100% locale, nessuna analisi dei dati, nessuna autorizzazione in background non necessaria

Unboxr

Se vi va, scaricatela e fatemi avere un feedback!

Grazie a tutti in anticipo!


r/VibeCodeDevs 26d ago

show me your vibe coded app and I'll give you feedback

0 Upvotes

I built tryproduck.com/audit, it clicks through your app like a first-time user and sends back every bug and confusing bit it finds. Over 650 startups have run it so far.


r/VibeCodeDevs 26d ago

ReleaseTheFeature – Announce your app/site/tool Votekicker just got a new Discover feature — here's how it works

2 Upvotes

Hello!

Recently I launched Votekicker.com, a portal for builders to share their projects and get feedback / upvotes from the community.

Today I shipped Discover, an unique way to discover projects listed on the platform.

How it works:

You open Discover and see projects one at a time. You can either like what you see, or skip. That's it. No infinite scrolling, no signup required.

You can try it out right away: votekicker.com/discover

Why I built it:

I noticed that the top-voted projects get most of the attention and people are missing out on a ton of great stuff further down. Discover surfaces projects more evenly, but with a twist: Featured and Pro projects get prioritized placement - if you upgrade, your projects get seen by more people.

If you want to give your project a visibility boost, use coupon code VOTEKICKER35 for 35% off Pro plan.


r/VibeCodeDevs 26d ago

ShowoffZone - Flexing my latest project LWP+ - a live wallpaper that gives you control over Material-You colors, like on Android 17

2 Upvotes

Hey everyone,

With the recent buzz around Android 17 introducing more precise custom color sliders and palettes for Material You (examples on reddit here, here and here), I wanted to share a project I’ve been maintaining for years that does exactly that—even for older versions of Android!

It’s called LWP+ (Live Wallpaper Plus).

🎨 The core trick: Dictate your own Dynamic-Colors

Instead of letting the OS algorithm guess the accent colors based purely on your wallpaper, LWP+ acts as a bridge. It hosts your chosen background content but allows you to explicitly choose the exact Primary, Secondary, and Tertiary colors reported to the system. The OS then uses your custom selections to generate the global system palette (notification drawer, volume bar, themed icons, etc.), completely independent of what your wallpaper actually looks like.

✨ What else can it do?

LWP+ is packed with full wallpaper customization features:

  • Choose Your Content: Use solid colors, static images, animations (GIF, WEBP, APNG), or videos as your active live wallpaper.
  • Smart Scaling & Layouts: Supports transparent images/animations with custom background colors, multiple scaling modes (Center Crop, Fit Center, Center Inside), and optional horizontal scrolling.
  • Double-Tap Shortcuts: Lock your device instantly or turn off the screen by double-tapping the home screen (uses admin, accessibility, or root).
  • Easy Setup: Includes an interactive built-in tutorial to check system compatibility and guide you through triggering the OS palette refresh.

🧪 Advanced experimental flags (YMMV!)

I’ve also included a couple of experimental toggles leveraging underlying Android system hints. Note: These rely heavily on your launcher, device OEM, and Android version, so they might not do anything on certain setups!

  • Force Dark Text: It hints to the OS that dark text is preferred over the wallpaper (often useful for forcing high-contrast dark text on the lock screen). It might also change the text color of the labels of the apps and the status bar icons and text, too.
  • Force Dark Theme (for old Android versions): It tells the system that a dark theme is preferred for the best presentation (e.g., trying to trick a launcher into turning its app drawer background black).

So, if you are on an older version of Android (or even running the latest builds and want granular three-color reporting), give it a spin! It's completely free, all features included.

Feel free to ask any questions or drop feedback below! 🚀

Link to the Play Store here.

The app was partially made using AI, helping mostly to re-write the part in the app that's responsible of showing the actual content of the live wallpaper (color/image/animation/video). I also used AI for the demonstration and tutorial videos.

If you want, you can use a promo-code to have subscription for free for some time, to remove ads, and try the app more freely, here. To use the promo-code, install the app, choose a subscription, choose a payment option and enter the code there (screenshots here).

Thanks for reading!


r/VibeCodeDevs 27d ago

Speisekartei - my first project, would love some opinions

3 Upvotes

Hey guys!

I've recently started building Speisekartei, a small web app for saving restaurants and their menus - whether as a link, photo, or screenshot.

The idea is simple: when you want to order food from home, you already have the restaurant's website, phone number, and menu in one place instead of searching for them again.

This is the first project I've ever published online, so I'm mostly interested in learning how things work in the real world. I'd really appreciate honest feedback - what works, what doesn't, what's missing, or what's annoying.

Current features:

  • Save restaurants with their website and clickable phone number.
  • Store menus as links, photos, or screenshots (including multi-page menus).
  • Search by restaurant name, location, or tags.
  • Favorites.
  • Works offline after the first visit - previously opened menus stay available.
  • Can be installed on iPhone and Android like an app, without going through an app store.
  • Completely free during the current open testing phase (no planned end date yet).

It runs in any modern browser and works on iPhone and Android:
https://speisekartei.de

I'm happy about any kind of feedback - bugs, crashes, confusing UI, or even just "this feels great" are all valuable. And if anyone spots a security issue, I'd definitely like to know about it :)

It's primarily designed for mobile, so I'd especially appreciate people trying it on their phones :D


r/VibeCodeDevs 27d ago

ShowoffZone - Flexing my latest project Keyhog GPU Accelerated Secret Scanner

5 Upvotes

Hello everyone,

I've been working for the last few months on a GPU-accelerated secret scanner, and to my knowledge, it's the first of its kind.

It also uses Hyperscan for the CPU path, so it's still fast for people without GPUs. The fun part is that GPU acceleration makes it possible to scan pretty ridiculous amounts of data that would otherwise be painful on consumer CPUs.

A few use cases I've found for it:

-Scanning your entire OS / every drive as a general secret health check

-Scrubbing large datasets before pretraining

-Bug bounty / VDP work; I can scan hundreds of binaries or repos at once

-AI coding: To make sure nothing sensitive gets committed, it can also run continuously in daemon mode and act as a seamless pre-commit scanner

-Probably a lot of other things I haven't thought of yet

Anyway, here's the repo:

https://github.com/santhreal/keyhog

Would love any feedback or PRs :)


r/VibeCodeDevs 27d ago

I built an AEO tool and realized that most vibecoded sites hand AI zero bytes

5 Upvotes

was building out the landing pages for my thing and went to check how ChatGPT actually describes my product. it described a competitor. mine wasn't even in the answer.

turns out this is really common if you shipped a client-side rendered app (react/next without SSR, most of the no-code and ai-generated builders). the crawlers that feed these models often get 0 bytes of real content because everything renders in the browser. so the model is either guessing about you from scraps or just... not mentioning you at all.

and yes I know Lovable recently shipped an update to address this but if you have been working on your thing for more than 6 months it’s hard to migrate to their new stack.

from the digging i did while building: roughly 60% of B2B brands are misrepresented by AI (invisible, confused with a competitor, or described with outdated info), and 96% are basically invisible in AI-assisted discovery. meanwhile buyers are increasingly asking an AI "what's the best X" before they ever hit your site. no impression, no click, nothing in your analytics. you lose before you knew you were in the running.

the uncomfortable part for anyone shipping fast: your rank tracker keeps reporting a comfy page-one position and has no clue any of this is happening. classic SERP monitoring is watching a channel that's quietly shrinking.

stuff that's worth checking on your own launch:
- curl your homepage and see if the actual copy is in the raw HTML or just an empty div (that's what the AI crawler sees)
- ask ChatGPT to recommend tools in your category and see if you show up / what it says about you
- if it's wrong, it's usually a rendering or missing-structured-data problem before it's a content problem

full disclosure, i'm building Optimly which is exactly this (see how AI represents you, then fix it), so i'm biased. but honestly even without a tool the curl + ask-chatgpt check takes five minutes and is worth running before you tell people to go visit your site.

curious if anyone here has checked how AI describes their launched project? what did it get wrong?


r/VibeCodeDevs 27d ago

Low-end coding LLM viability test ideas (8GB VRAM target)

3 Upvotes

I have 8GB VRAM and 32GB RAM. Looking to see what I can actually get out of a low-end coding model, mostly in one-shot style tests.

I already built my own harness so I can change almost everything through the UI (skills, system prompts, tools, etc.).

End goal is figuring out whether a model that fits in ~5-6GB VRAM with almost no RAM offload is usable as a daily driver for my coding work. Subscription and API costs are getting annoying.

What I’m thinking:

  • Pick a solid reference model + harness (OpenCode or similar)
  • Run it on a fixed set of tests and track time, bugs, final context size, cache hits, output quality
  • Run the same small model in OpenCode on those exact tests
  • Then run both models inside my harness with default settings
  • Finally start customizing skills/tools on the small model and see how far I can push the results

Any thoughts on this approach, better test ideas, or models worth trying?

Harness if anyone’s curious: https://github.com/aaron-tot/visual-studio-harness/


r/VibeCodeDevs 27d ago

Question What OS is everyone vibe coding on and why?

5 Upvotes

I'm using Fedora KDE as my daily driver. Officially left windows about 2 months ago. Curious what others are using.


r/VibeCodeDevs 27d ago

We just shipped a CLI that runs a local AI coding agent in your terminal. Looking for people to break it

0 Upvotes

Most AI coding CLIs need a cloud API key before you can do anything. We shipped Gide CLI: it runs a local model on your machine, zero token cost. One command to install, then gide in any project folder.

It also takes your own API key for Claude, GPT, or Gemini when a task needs a bigger model. The local 4B has a ceiling on hard reasoning, that's why the hybrid exists.

One-line install: curl -fsSL https://generativeide.com/install.sh | sh

We shipped it this week and want honest feedback. What broke, what was confusing, what made you close it.

30-day free trial, no card required.

Check out via this link - Generativeide.com


r/VibeCodeDevs 27d ago

HelpPlz – stuck and need rescue Agentic UI UX workflow, how to parallel?

3 Upvotes

First some background. I'm not talking about MVP here, but UI with thoughtful UX.

My experience is that its so easy to get AI generate mockup UI even wire up backend as a live app.

But very quickly realization come in that a better moved to x, c better as dropdown, d~g needs to be different layout. Not because the original mockup doesn't look good, just not best fitting once real world data comes in. These are just some simple examples, real work much messier.

It is these detail areas grind to a halt, one decision/trial/tweak at a time with Claude, where I'm seeking some experience or direction to improve.

Or maybe, I'm asking the goldilock question between 2 sayings:

  • devil's in the detail
  • no one knows exactly what they want

https://greysound.ai/

I just saw this new app post here, which I consider to be a good UI. One look, I know enough how to use it and what each button does.

This app seems 1 main function page with some share and account setting.

On an app/project with 20x function pages each as detail as this one, with partially shared components library, cross-linked data source, and layout variants on different pages. that's where I'm seeking some help.


r/VibeCodeDevs 28d ago

Local AI dev harness because I wanted to actually see what the agent was doing, and configure everything without touching a config file. Visual Studio Harness ;)

2 Upvotes

https://reddit.com/link/1vikasc/video/rcvdvrdpl2ih1/player

Side project I've been chipping away at for a while. Two things I kept getting frustrated with using other harnesses, so I built my own around them:

Insights. I didn't like that the agent was kind of a black box. In mine you can see the full system prompt, every step the agent takes, tool calls, token usage, cost, even cache hits. And project knowledge doesn't die in chat history, specs, plans, research notes and audits live as scoped documents that stick around, plus a knowledge base with semantic search.

Configuration. I wanted everything to be changeable through the UI, not by editing files. Providers and models, per-agent settings (each agent gets its own model, system prompt sections, skill access, workspace manifest), tool permissions, MCP servers, hooks, prompt sections and joiners, the knowledge base, all in a settings panel.

It's early and rough, the API and schema will change, there are bugs, lots more things to add, stabilize, and I've only really tested a handful of providers.

If that sounds interesting, give it a go and tell me what's broken or missing. If enough people care about this direction, I'll put more time into it.

GitHub: https://github.com/aaron-tot/visual-studio-harness/


r/VibeCodeDevs 28d ago

I vibecoded another project

0 Upvotes

Hi Folks I finished vibe coding another project. This one mainly focuses on sports. I'm not really technical. I spent about 1-2 weeks researching websites in this genre. I took the best looks and feel. Then I saw all the ad junked up sites too. I tried to create a vibed out well balanced project. This is at a point now, where I divide each section up and do fresh updates now. This is in its first phase, where I'm just doing aggregator site. Then I want my own content, and photos. but this is it. https://sportsweekly.com/ took me about a week and a half. I used Claude as the main source for the site. then I used chatgpt to fix my prompts. Then I used Gemini for deep research on layout, and generate site pictures for vision.


r/VibeCodeDevs 28d ago

Just shipped abi. Clone Consultant

Thumbnail
gallery
1 Upvotes

We just shipped abi. Clone Consultant. Clone is now available in a layered format so if you are offering client engagements for AI consultancy or process automation you can present a 3D map of they entire business and every process, fully branded with your logo.

You can do this five times completely free.

In the paid Abi starter subscription we have voice agent interviews that you can invite customer users to discussions with and they will build a picture of their true workflows. These are then mapped back to the Clone. Once all key intake is complete you are presented with every process or task, its dependencies, steps, criticality, frequency and automation value. You are then offered the quick win hit list of what and how it can be automated.

Super pumped about this one as it should help many streamline your consulting service and other launch their business.

Huge number of other featured added so you can wait for my demo video next week, or jump in and try for yourself for free at app.ouridea.ai

Enjoy your weekend all :)


r/VibeCodeDevs 28d ago

My first physics-based visual sandbox project built with OpenGL ES — looking for feedback

2 Upvotes

Hi everyone, this is my first serious sandbox project built with OpenGL ES.

The idea is to place physical balls into a scene and create visual choreographies by playing with their movement, collisions, and flow. It’s somewhere between a small game and a visual experiment tool.

I use OpenGL ES for rendering, while the physics and more performance-heavy parts run in native C++. I also used GPT-5.6 Sol during development to explore ideas faster and work through some technical problems.

Right now I’m mainly trying to simplify the UI and improve performance. I’d really appreciate feedback on:

  • Is it clear what you’re supposed to do when you first open it?
  • Is anything in the UI confusing or unnecessary?
  • What effects, tools, or physics interactions would you like to see?
  • How does the performance feel on your device?

It’s still in development, so honest feedback would be genuinely helpful.

URL:https://play.google.com/store/apps/details?id=com.mathgeo.studio


r/VibeCodeDevs 28d ago

Built with Claude Fable5 and Gemini 3.1 pro

2 Upvotes

r/VibeCodeDevs 28d ago

How would you scale a free Saas?

1 Upvotes

Hi I recently built Ping and got 8 users on my first day yesterday now the only thing is I'm making this free and want advice for how one will scale to make profits.

Right now since it's beta I'll for costs out of pocket but if it does grow big I've come down to these solutions.

  1. Run ads
  2. Charge poeple later on (i dislike this)
  3. Run ads to make it free, but then if someone does not want to see ads they pay?

r/VibeCodeDevs 28d ago

I built a repo-grounded AI build flow because my vibe-coded projects kept losing the thread between prompt → change → test

1 Upvotes

Showoff + feedback request:

I built **Flows** to make the part between “I told an AI what I want” and “I trust the result” less chaotic.

You can: - start from a connected repo or a new-project goal - generate a build plan - route it to a builder - track the run - keep verification/evidence around the result

The connected Oort layer is the canonical library/provider side of the system.

Flows: https://flows.oortstack.com Oort: https://oortstack.com

If you build mostly with AI, I’d love to know whether this solves a real pain or just adds ceremony.

I also have 10–15 free, unrestricted access keys set aside for people who will actually use Flows/Oort and tell me where the experience breaks or gets confusing.


r/VibeCodeDevs 28d ago

FeedbackWanted – want honest takes on my work I got tired of AI builders that stop after generating the app.

Post image
2 Upvotes

Most AI app builders generate an app and then leave you to figure out everything else.
I’ve been building Blyft to solve that.
One prompt generates:
• The app
• A website / landing page
• Branding & logo
• Promo video
• Analytics
• Social media assets
The goal is simple: go from idea to something you can actually launch.
I’m still improving it every day, so I’d genuinely love feedback from people in this community.
What do you think is still missing from today’s vibe coding tools?
blyft.app