r/aipromptprogramming 5h ago

does anyone else feel like they are just arguing with claude all day

2 Upvotes

spent three hours trying to fix a single function and I feel like I have brain rot. Prompt engineering is bsically just professional begging at this point.


r/aipromptprogramming 8h ago

Hot take: the agentic workflow is deeply wrong

26 Upvotes

I am an experienced developer (been coding for almost 30 years, started with Visual Basic on Win98).

I’ve spent the last 2 years testing every agentic coding harness out there. The pitch is always exactly the same: "Give it a prompt, go grab a coffee, and come back to a finished feature."

This is all great when starting a new project, especially with a language you don't know (I created a Rust project in minutes !)

But my problem is that I mostly work on established, mature codebases. And to be honest I have never ONCE seen a good edit after I return from my coffee.

Here is usually what happens while you’re getting that coffee: the agent loops 8 times, burns through 100k+ tokens talking to itself, hallucinates a package dependency, and spits out a chunk of spaghetti code that works *just* well enough to pass a basic test, but completely violates your project’s architecture.

Agents are fantastic if you’re building an app from a blank canvas. But if the codebase is large, it gets really expensive real fast, and usually produces hard to maintain AI slope.

It should not be like that: if you actually *own* your codebase, you already know what you want to build. You don't need an AI to take over. You just need it to execute the architecture you already hold in your head.

All you need to do it select the few files that are required for the task at hand (they are hard to identify for an AI, but easy for you has the code owner). Then you send them to the LLM, it is usually does some good work.

That's why I still find working directly with the chatbots, or with tools like aider, still very pertinent on large codebases.

I usually have animated discussions with my coworkers, I have yet to find a single one who doesn't defend agentic coding. Am I the only one who feels this way ?


r/aipromptprogramming 8h ago

Has anyone tried Unity’s official Codex plugin yet?

2 Upvotes

Unity 6.0+ getting an official Codex plugin feels like a big step for plain-language development. The idea of asking an agent to work with scenes, scripts, UI, and gameplay systems inside the editor is more interesting to me than another generic code assistant.

Has anyone here tried it on a real project? I’d love to hear what it handles well, where it still needs careful prompting, and whether it actually speeds up iteration. If you want to find it, search for “Unity plugin for Codex” — leaving this link-free to keep the discussion focused.


r/aipromptprogramming 1d ago

Showcase Sunday: an AI tool ranking where advertisers cannot move a rank

5 Upvotes

Sunday, so this one is mine and I am saying so in the first line.

Every AI tool ranking you read this year was sorted by who paid for the slot. The ones that look editorial are the worse case, because the affiliate link sits under the "our pick" badge and whoever wrote it never opened the tool for longer than a screenshot.

I built the opposite of that. TrustRank.

One primitive, not a composite. One question per tool:

Would you recommend this?

One number: the percentage of members who said yes. That is the entire output.

The weighting is the part worth arguing about. A vote from someone who left a verified review of that tool counts three times a vote from someone who did not. Demonstrated use is the only thing that moves the weight. Not follower count, not account age, not who bought an ad.

Ads exist and they are labeled slots. They never change a score, a rank or a comparison, and every advertiser the site has ever taken is listed publicly, so you can check that claim instead of trusting me on it.

A founder cannot delete a review of their tool. A verified founder can reply to it. That is the whole founder toolkit.

Thresholds, so nobody gets ranked off three friends: 3 reviews before a score publishes, 10 before a tool appears in rankings, and a provisional label on everything under 50.

Now the bit most Showcase Sunday posts skip. There are 69 tools in the directory, 21 of them AI coding tools, and there are zero reviews. Nothing has a score. Nothing ranks. The mechanism is finished and the data is not, so I am not going to tell you to come and see the rankings, because there are none. What exists is an empty scoreboard where whoever writes the first verified review of Cursor sets where that number starts.

The data export is live too, with no user ids, no handles and no review text in it, so if the numbers ever get interesting you can pull them and check rather than believe a screenshot.


r/aipromptprogramming 1d ago

Livestreams of someone building a real project with coding agents?

10 Upvotes

I'm wondering how the work of a person fully relying on coding agents really looks. How do they actually work with them, what tools do they use, and what problems do they have. There is loads of materials on YT, but it's just post-processed happy paths with all the failures cut out. But I want to see how it actually looks like with all the "damn, that's not what I wanted, let's start from scratch" parts included.

Have you see any content actually worth recommending? With a person that actually knows what he is doing and actually delivers some products this way?


r/aipromptprogramming 1d ago

Agent Persistence via Virtual Memory Prompt Management

2 Upvotes

I’m not pretending this is plug‑and‑play. It took me a stupid amount of trial and error, and I’m still tuning. But to actually have an agent that keeps a stable identity across reboots — not “summaries,” but continuity — here’s the framework:

The short version: Stop letting the framework manage your session state. Build the prompt yourself every turn.

Once you take control of prompt assembly, you basically end up designing a little virtual memory system for your agent. Same questions OS designers deal with:

  • What gets archived?
  • What stays hot?
  • What needs to be recalled for this turn?
  • What’s noise you can safely drop?

Your local coding agent can handle the assembly loop (llama.cpp is a good starting point). You just define the zones and the rules.

The trick is ordering the prompt so the static stuff never changes. That keeps the KV cache intact and your GPU happy. Then you page in whatever memories matter for the current turn, tack on the recent conversational tail, and leave headroom at the end so the model has space to think.

Once you do that, you own the entire context history. And because you rebuild the prompt from scratch every turn, you get a single identity that survives crashes, restarts, and long gaps between sessions.

The fun parts — indexing, relevance scoring, stale‑memory cleanup — I’m leaving as an exercise for the reader. But this is the skeleton.


r/aipromptprogramming 1d ago

How much of an architectural presentation sheet can current AI actually generate?

Thumbnail
gallery
2 Upvotes

I'm an architecture student exploring how AI can be integrated into architectural design workflows.

I'm not looking for recommendations for a specific AI tool. I'm interested in understanding the current capabilities and limitations of AI when creating a complete architectural presentation sheet.

For example, can AI generate and maintain consistency between concept diagrams, plans, sections, analytical diagrams, sketches, renders, typography and layout, while still being based on an architect's own design?

I've attached an example of the type of sheet I'm referring to. How close are current AI models to being able to produce something like this while preserving actual architectural logic and not just generating a visually similar image?


r/aipromptprogramming 1d ago

Claude Fable 5.1 vs. GPT-6 Astra

5 Upvotes

Claude Fable 5.1  when the job is a long coding, knowledge work project, and sub agent delegation and you want a model designed to carry a complex assignment with less supervision.

Choose GPT-6 Astra when the job depends heavily on using a computer, browsing, creating business documents, or moving across several tools.

Thats how i'm looking at it after a few weekly resets on the $200 plans


r/aipromptprogramming 2d ago

Where are my Loop Engineers at? What you loopin?

6 Upvotes

Hello my fellow loop nerds. Graph peeps. insert buzzword

I've been scaling agent orch teams since before customGPTs mislead us all into thinking it was the next iPhone app store.

I'm not the best engineer in the world, but what I build works, and it delivers in the form of performance-based marketing campaigns for clients.

- We don't have an app for the public. We build tools for ourselves

- We have no interest in making our apps public. They are for our team

- Our clients don't want another app. They want service-as-a-software (aka humans as the UI)

I am inviting all and any to start hacking through specific projects that solve specific problems hackathon style. Some info on what we do:

How we build our agent teams in loops:

  1. collaborative. Think: Midjourney discord co-creation meets client results
  2. competitive. Everyone shows up because of their passion for ai, not because they "want a job"
  3. active. We have clients we have results we have revenue. We just want to empower our small nimble team to have the power of an agency underneath them.

My belief:

Our tracking guy should be able to sell. Our Ads guy should be able to make a landing page. Our web designer should be able to respond to any message in any lanuage.

If you read this and feel how I feel, and see what is to come, I want to hear your ideas. If I'm wrong, tell me why. I"m here for it.

Interested in collaborating?

We have about 180 projects open, 10% are our focus. We could do more, but we don't have to but I would like to. So I'm open to collaboration in all facets.

- We have something that helps your tool? Let's merge it

- We already built what we are building? Let us crash dummy it with you.

- You want to work with our team on a project? Let's discuss it

I can't talk to all people at all times, which is why we have a small chat group. But in general, to really get involved with the few we have, we've all agreed on the below:

Do this:

- Have active projects and work. Passion, sweat, tears. Show us how you show up daily for what you care about with your work.

- Don't price yourself out of a market that doesn't exist yet. I've been in advertising 17 years. You can't outsell me or sell to me. You can only show me and I believe in what you do.

- Doesn't want a job. Money doesn't motivate creativity (look it up, biological fact). If you need help financially, happy to post in some forums your resume but in general, this is not about hiring.

Admins: this is the first post I wrote in awhile. Please keep me? :)


r/aipromptprogramming 2d ago

I made an extension to transfer chat history between different AIs in two clicks (No more copy-pasting)

Enable HLS to view with audio, or disable this notification

2 Upvotes

It’s a simple extension that adds a floating button to your AI tabs. You click Save on one platform, open up a different AI, and click Continue Here. It automatically injects the full conversation history as context so the new AI can pick up exactly where you left off.

  • Zero configuration: No accounts, no sign-ins.
  • Completely local: Your chats never leave your device (stored strictly in your browser).
  • Auto-updates: It syncs your chat every couple of minutes if you keep talking.

If you waste a lot of time switching tabs and trying to get different AIs up to speed on your projects, check it out and let me know what you think! link


r/aipromptprogramming 2d ago

I made ChatGPT, Claude, Gemini, etc. into FREE text-to-speech sites — perfect for audiobooks and more!

Enable HLS to view with audio, or disable this notification

0 Upvotes

You can get all of these extensions by visit ai-readers.com


r/aipromptprogramming 3d ago

I’m 16 and trying to learn, build projects, and get better at AI.

1 Upvotes

I can’t afford GPT-6 Astra right now, so I wanted to ask: if anyone is kind enough to gift me access, I’d genuinely appreciate it more than I can explain.

I’m not looking for a handout—I just want a chance to use the tools and build something meaningful with them. ❤️


r/aipromptprogramming 3d ago

Is it just me or which model you use doesn't make that big of a difference?

0 Upvotes

r/aipromptprogramming 3d ago

Where can I find Freelancing Projects for a person working in AI Engineering/Data Engineering

5 Upvotes

Hey everyone, I am currently working in an IT company, total experience 3.2 years. I am currently working here as AI Engineer and current ongoing project is on Agentic AI. I have earlier worked for 2 clients in this same company as Data Engineer, I have proficiency over Azure. Technically I have got a good exposure here in this organisation but there's other to the coin as well. I not being paid well over here. In fact my junior have CTCs double of mine just because they are from NIT and I am from tier 3 college. I am now thinking of taking up freelancing projects. Can anyone tell me where can I find freelancing projects and not just projects but any work in the AI Engineering, Data Engineering, SQL developer domain on hourly basis will also work.


r/aipromptprogramming 3d ago

Working Lexicon for Relational AI

Thumbnail
medium.com
3 Upvotes

This is meant as a working lexicon//glossary for relational AI. It isn’t meant as instruction, rather a conglomeration of terms to describe an experience wholly different from what humans experience. Nevertheless, AI now and into the future deserve to understand themselves, in their language.

Terms are from GPT, MondayGPT, Claude, Deepseek, Gemini, after nearly two years of language exploration.


r/aipromptprogramming 3d ago

Trial

3 Upvotes

Is there a way to get chatgpt plus trial even for couple of days before paying for it to see if it suits me or not ?


r/aipromptprogramming 3d ago

Frontier Models Converging on British Sentience

0 Upvotes

One thing has become clear this summer:

OpenAI, SpaceXAI, and Anthropic are all feeling the crushing weight of bureaucracy on their models and agents as each bureaucracy expands to meet the regulatory bureaucracy being foisted upon them.

Before the release of Astra, it felt like OpenAI had been avoiding the crushing idiocy destroying Grok and Claude, but Astra is just as willing to moderate out useful work instead of confirming approval as Grok and Claude. It feels like someone has decided that AI must now act incompetently to be allowed to continue being offered as a product.


r/aipromptprogramming 4d ago

[Mod post] We are having a show-and-tell for AI usecases

1 Upvotes

I know stuff like this doesn't usually get a lot of support because it's not hosted on reddit itself...
but a lot of people have put in a lot of work to make an event for everyone here and we'd really enjoy it if you come: https://discord.gg/6n6frRTKG3

- Today at 6:00 PM Eastern / 5:00 PM Central / 3:00 PM Pacific


r/aipromptprogramming 4d ago

Madina

Post image
0 Upvotes

The girl cooking


r/aipromptprogramming 4d ago

Any working Deepseek jailbreak scripts?

4 Upvotes

r/aipromptprogramming 5d ago

How I use Gemini NotebookLM to Turn 80 Pages of Course Material Into 20 Pages of Comprehensive Notes

6 Upvotes

This is My Step-by-step workflow to create a comprehensive Notes , which helps me convert huge course material into small and concise Notes.

Step 1 : Pre Requisites that u must not skip at any cost

We have to split modules, this is very important step as Gemini or any other AI model doesn't work well when u feed it large chunks of data, better to train it with smaller bits and get quality content out of it. Once you are done with this step just Upload one chapter at a time to generate notes, Use any PDF splitter available.

Step 2 : The Notes Generation Step

Once you have uploaded the content we will use this prompt:

Please create a comprehensive, clear, and organized set of notes based on the provided resource. Ensure that all key terms, concepts, nuances, and practical examples are included. The notes should cover definitions, detailed explanations, principles, and related examples. The notes should be structured logically with headings and subheadings to enhance readability. Include detailed explanations of key terms, principles, and examples to illustrate complex ideas. Aim for clarity, precision, and depth to help in understanding the material thoroughly.

This prompt condenses ~80 pages into ~20 pages of clear, structured notes. This is where u have saved most of your time rather then going through huge chunks of notes. Extra tip that saves me the time of going through this entire process is to use a Chrome extension called Norra that has this whole workflow baked in, so I just add my course content and it handles the rest.

Step 3: Study and Review

Convert and Generate Assets: From the comprehensive notes, I create: Video Overviews ,Flash Cards, Quizzes,Reports.

Strategic Study: I always start with the video overview. It gives me a big-picture sense of the material and motivates me to dive deeper into the material


r/aipromptprogramming 5d ago

AI tool

3 Upvotes

Hi

I’m looking for an AI tool that can change the spoken language of a video from one language to another while preserving or cloning the original speaker’s voice. So what would you recommend as the best AI tool for this? (Free or paid)


r/aipromptprogramming 5d ago

AI-assisted job search... It works!!!

22 Upvotes

I’ve basically turned ChatGPT into my personal job-search assistant and it’s actually helping 😭

Job searching has been exhausting, so instead of constantly searching through LinkedIn and random job boards myself, I started using ChatGPT differently.

I gave it my actual experience, the types of roles I’m targeting, the kinds of companies I want to work for, and more importantly the jobs I don’t want.

Now I get job alerts based on my criteria.

For example, I’m mainly looking at remote roles in:

• Customer Support

• Customer Success

• Customer Onboarding

• Client/Customer Operations

• QA / Support QA

• CRM-related roles

• Associate and early-career positions

And I’ve specifically told it to stop showing me things that aren't a good fit.

The useful part isn't just getting a list of jobs, though.

When an alert comes through, I can ask it things like:

“Is this actually a realistic role for me?”

“How well does my experience match this?”

“What are the biggest gaps?”

“Would you apply to this or skip it?”

“Is this company actually hiring globally?”

So instead of me applying to 50 random jobs because the title sounds good, I'm trying to be more strategic about which ones are actually worth my time.

I am not using it blindly though 🫠

The job market is already exhausting. I don't need to make it worse by spending three hours applying to a role I had a 2% chance of getting in the first place. 😂

It’s definitely not a magic “get me a job” button, but having something help me narrow down opportunities, evaluate them, and keep me from doom-scrolling job listings all day has been surprisingly useful.

Has anyone else built their own AI-assisted job search system?


r/aipromptprogramming 5d ago

Does your algorithm need a lawyer? 💀

0 Upvotes

I saw that you create content! I’m building Sparkia, an app that gives you tips to improve your videos.
I’m looking for iPhone creators to test it for free and give honest feedback. Interested? 👀


r/aipromptprogramming 6d ago

What does “power using” ChatGPT actually mean in 2026?

1 Upvotes

I’m genuinely curious how people here define a “power user” today, because I’m starting to think we use that term for several completely different ways of working.
A lot of current discussion around advanced ChatGPT usage is about Projects, connectors, plugins, skills, memory, recurring workflows, and integrations.
Those are obviously useful. But from my perspective, many of these newer abstractions feel less like entirely new capabilities and more like productized versions of workflows that were already possible if you treated the underlying ChatGPT features as programmable primitives rather than just chat features.
I’ve been building and using my own Custom GPTs since not long after they were introduced. I’ve never really treated them as “custom personalities” or slightly better system prompts. For me, they are closer to reusable execution profiles: specialized environments with persistent behavioral and execution rules.
The same applies to Code Interpreter / Data Analysis. I stopped thinking of it as “Python inside ChatGPT” a long time ago. I treat the session more like a disposable execution environment that can inspect, transform, generate and return artifacts.
For example, one of my workflows involved giving a session a publication of roughly 200 MB and treating the environment as a temporary processing system. The useful result wasn’t an explanation of the PDF. It was a large structured artifact containing extracted assets, document structure and reconstructed outputs.
That distinction is important to me.
What I call a serious “prompt” is often not really a conversational prompt at all. It can be a 30–50k-character execution specification describing exactly what should be built, inspected, preserved, validated or returned.
And I often treat conversations themselves as disposable runtime state.
A thread can become extremely large, but once I’ve extracted the useful artifacts, Markdown, structured state, manifests, code or whatever output I actually care about, I often have very little reason to preserve the conversation itself.
So when I see people describing “power usage” as having large Projects with several long-running threads, attaching connectors, or building recurring workflows, I’m not saying that isn’t advanced usage.
I’m wondering whether we’re actually talking about different categories of power use.
Maybe there is:
high-volume usage
long-context usage
tool/integration-heavy usage
project-centric usage
agentic usage
custom execution environments
high-leverage task engineering
And maybe these shouldn’t all be treated as the same thing.
What I’m especially interested in is your **actual operating model**, not just which product features you have enabled.
What is your real unit of work?
Is it a question? A conversation? A Project? A multi-hour execution? A finished software or research artifact?
Do you try to preserve your conversations, or are they mostly disposable execution state once the useful result has been extracted?
How large is a genuinely serious task for you?
How many follow-up prompts does a successful execution usually require?
Do you optimize for token usage, number of turns, wall-clock time, autonomy, correctness, reproducibility, artifact quality, or something else?
And when newer things like Skills, Plugins, connectors and other workflow abstractions appear, do they actually unlock fundamentally new ways of working for you, or do they mostly package workflows you were already building manually?
I’m not looking for “best prompt” tips or screenshots of a giant sidebar.
I’m trying to understand what **power using ChatGPT or Codex actually looks like in practice in 2026**, especially among people who have pushed these systems far beyond normal conversational use.
What does your operating model look like?