How are you letting non-engineer teammates edit prompts in production?

Reddit r/AI_Agents Tools

Summary

The author discusses challenges in allowing subject matter experts to edit prompts in production for AI agents in regulated domains, and shares a solution using a prompt editor with GitHub backend for version control.

I build vertical agents for legal and clinical workflows. The same coordination problem keeps bugging me: The subject matter expert (the lawyer, the clinician) is the only person who actually knows what the prompt should say, but I'm the only person who can ship code. What I've tried: 1. Lifting prompts into a hosted platform (Langfuse / PromptLayer / a homemade admin panel). Works until you realise the prompt is now decoupled from the code that calls it, and their edits race your deploys. 2. Have them edit prompts in Google Docs and I copy their edits into the codebase. Works but still messy on coordination and versioning. 3. Giving them a GitHub account but they struggle to use git. Curious what others have landed on, especially anyone shipping agents into a regulated domain where the SME has to sign off on every prompt change. I ended up building a library for it which mounts a prompt editor within the app, and uses GitHub as a backend, so prompts can stay on git, and SMEs can open PRs without knowing what a PR is. Happy to share the link if it's useful but mostly want to hear what's working for people.
Original Article

Similar Articles

@ghumare64: https://x.com/ghumare64/status/2052825541057626258

X AI KOLs Timeline

An X thread arguing that production AI agents need operational scaffolding (runbooks, permissions, logs, rollback, verification) rather than just better prompts. The author draws parallels to DevOps evolution, stating that prompts provide advice while runbooks provide control, and that agent systems require platform engineering solutions for permissions, state management, verification, observability, and rollback capabilities.

Prompting fundamentals

OpenAI Blog

OpenAI Academy guide on prompting fundamentals that teaches users how to write clear, effective prompts to get better responses from ChatGPT through techniques like being specific, adding context, specifying output format, and breaking down complex tasks.