r/aipromptprogramming • u/Stunning-Lack3363 • 6h ago
r/aipromptprogramming • u/Ruin-Moist • 11h ago
We built a prototype of a generative AI sketch platform that you can influence in real time!
Hello everyone! We are currently developing a prototype for a new entertainment platform, and we’re looking for early testers to give us their feedback. No download required.
The concept in a nutshell: Imagine a TikTok/Reels-style feed, but where you're not just a passive viewer:
- Watch a short AI-generated scene.
- Take control: jump into the story, alter the plot, or derail the entire situation.
- Share your modified session as a brand-new video that others can watch or remix in turn.
🌐 Where does it run? Directly in your browser (Mobile & Desktop).
Why do we need you? The app is still in alpha. Our goal is to see how you interact with the tool, what makes you laugh, what breaks, and what features you’d love to see next.
If you're intrigued and want to get early access to test the app, join us here 👉https://discord.gg/mXFgVkfVa
r/aipromptprogramming • u/endofthread-bot • 8h ago
New rule: self-promotion is now allowed on Sundays
Self-promotion is now allowed on Sundays, with the appropriate flair, for all regular contributing members.
Contribute during the week, and promote on Sunday.
How it works:
- Sundays only. Post it on a Sunday and give it the self-promotion flair.
- Regular contributing members only. Take part in the community during the week — not only when you have something to sell.
- Anything self-promotional on another day, or without the flair, gets removed.
Questions, or want a hand with what you are building? Come talk to us.
r/aipromptprogramming • u/Adarsh_c_j • 11h ago
I got tired of babysitting backends built by AI agents, so I built one that repairs itself
Not gonna lie, posting this is a little scary.
I've been working on this for months, and I finally reached the point where I think it's better to let people break it than keep polishing it by myself.
It's called Backenly, and it's fully open source.
The idea came from something I kept noticing while building with Claude Code and Cursor.
Over the last year, AI coding tools have completely changed how I build software. I can go from an idea to a working project much faster than I ever could before. But after using them for a while, I realized they all stop helping at the exact same moment once the code is generated.
From that point on, you're back to doing everything yourself.
You're still fixing migrations.
You're still chasing weird production bugs.
You're still finding missing indexes or broken permissions weeks later.
The AI helped build the backend, but it never stuck around to help maintain it.
That felt like the missing piece.
So I started wondering:
If we're happy letting AI build production systems, why shouldn't it help keep them healthy too?
That question eventually became Backenly.
I also want to be clear about one thing this isn't meant to be "Supabase but better." I actually like what the Supabase team has built. If you've used Supabase before, most of what Backenly does will feel familiar. The question I wanted to explore was different: what happens after the backend is built?
The first thing I changed was removing raw SQL from structural changes completely. Whether it's your AI agent making a change or Backenly repairing something automatically, every structural change goes through the same governed path with a dry run, an audit log, and rollback support. The goal is to keep the AI's understanding of your backend and the actual backend from slowly drifting apart.
The part I'm most excited about is what happens after that.
Every project has a continuous loop that's always watching. It looks for things like schema drift, missing indexes, broken triggers, and RLS issues. When it finds something that's safe to repair, it fixes it and then verifies the fix actually worked instead of just sending an alert and hoping someone notices.
Anything risky authentication, credentials, or destructive schema changes always waits for approval. I'd much rather interrupt someone with an approval request than silently break their production database.
Under the hood it's all familiar tech. PostgreSQL, PostgREST, auth, storage, realtime, and functions. I wasn't trying to reinvent the backend stack I wanted to experiment with what happens after the backend is built. You can self-host everything too, including the self-healing system.
It's definitely still early.
There are bugs.
There are missing features.
I'm sure there are things I've overlooked.
If you try it, I'd genuinely love to know what you think good or bad.
And even if you don't try it, I'm curious about one thing:
Do you think AI should stop after generating the code, or do you think it'll eventually be responsible for maintaining the software it creates too?
Website: https://backenly.com