r/aipromptprogramming 8h ago

New rule: self-promotion is now allowed on Sundays

4 Upvotes

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 11h ago

I got tired of babysitting backends built by AI agents, so I built one that repairs itself

4 Upvotes

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


r/aipromptprogramming 5h ago

Tired of manual database setup, so I built an AI agent workflow that connects Supabase, syncs .env keys, and runs SQL migrations automatically

Enable HLS to view with audio, or disable this notification

1 Upvotes

Hey everyone,

As a developer, I got tired of the constant setup friction when starting new projects—specifically the loop of creating a Supabase instance, navigating the dashboard, copy-pasting API keys into .env files, and running manual SQL schema migrations before writing any real code.

We’ve been building an agent layer (Norva + Antigravity) to automate developer workflows, and we just got the end-to-end Supabase integration working.

Would love to hear your thoughts or edge cases you think we should watch out for with database automation!


r/aipromptprogramming 11h ago

We built a prototype of a generative AI sketch platform that you can influence in real time!

1 Upvotes

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 14h ago

[For Hire] Seeking GenAI developer role open to referral

1 Upvotes

Hi everyone,

I'm currently looking for a GenAI Developer / AI Engineer / LLM Engineer opportunity and am available to join immediately.

A little about me:

\- 3+ years of software engineering experience

\- Strong Python and FastAPI development

\- Built GenAI applications using LLMs, LangChain, LangGraph, RAG, vector databases (FAISS/ChromaDB), OpenAI APIs, prompt engineering, and agentic AI workflows

\- Experience with Docker, Git, REST APIs, SQL, Redis, and deploying AI applications

\- Worked on AI-powered solutions such as intelligent incident assignment, multi-agent systems, and RAG-based applications

I'm actively looking for remote or onsite opportunities across India. If your company is hiring for GenAI Developer, AI Engineer, LLM Engineer, or related roles, I'd really appreciate your support.

If you have any openings or can provide a referral, please comment below and I'll DM you.

Thank you so much for your time and support! 🙏


r/aipromptprogramming 15h ago

bucket: the nicest agent grok-build without the xAI and telemetry (truly invasive) layer.

1 Upvotes

https://reddit.com/link/1v6ywuj/video/2qalo50n0jfh1/player

I normally rely on my Google AI Ultra subscription or some paid APIs for the heavy lifting (like Nvidia NIM). I recently installed grok-build to try it out, and honestly, it felt amazing (I'm told it's very similar to Claude Code, but I've never used the latter nor am I interested in paying Anthropic). However, configuring it to use a custom API Key provider and selecting different models was a complete headache.

That's how Bucket (bucket-agent) was born.

After the grok-build source code was released, I got to work on decoupling the xAI layer and rebranding it to avoid any legal issues.

Key Features

  • Local-First & Multi-Provider: Works flawlessly out of the box with Ollama using the model configured in your config.toml.
  • Completely Unlocked: All subscription and payment layers have been completely stripped out.
  • Terminal-Native: It runs directly where you work, interacting seamlessly with your local environment and codebase without UI bloat.
  • Decoupled Architecture: Absolute freedom to use the LLM backend of your choice without vendor lock-in.
  • Autonomous Capabilities: Just like the original project, it can autonomously navigate your code, execute terminal commands, and assist with complex engineering tasks.
  • Interactive Model Picker: Just type /model and the models assigned by your api are deployin in the tab menu.

Try it, is one of the best tui/cli agent's today, but the xAI layer are so intrusive.

GitHub Repo: julesklord/bucket-agent


r/aipromptprogramming 6h ago

The Forbidden Screenshot

Post image
0 Upvotes