OpenAI Prompt Optimizer: The Real Growth Data Behind GPT-5's Free Prompt-Improvement Tool
Most teams still write prompts by trial and error, patch a bug, re-run, and hope. The OpenAI prompt optimizer built into the GPT-5 Playground replaces that guesswork with a diagnostic pass: paste your prompt, click Optimize, and the model returns line-by-line fixes for contradictions, missing formats, and instructions that don't match your few-shot examples. It's free, it's built into platform.openai.com/chat/edit?optimize=true, and the published benchmark data behind it is strong enough to change how growth and product teams should build prompts in 2026.

Why manual prompt tuning fails at scale
A single prompt might power a support agent, a coding assistant, and a content-scoring pipeline. Manually tuning each one means:
- Editing by feel, with no baseline metric to prove the change helped
- Contradictions creeping in as instructions get pasted and merged over months
- Few-shot examples that silently drift out of sync with the written rules
- No repeatable process when the same prompt needs to move from GPT-4o to GPT-5
The OpenAI prompt optimizer was built specifically to catch these failure modes, using GPT-5 itself to read your prompt like a reviewer would.
How the OpenAI prompt optimizer works (4 phases)
- Paste and scan. Drop your current prompt into the Developer Message field in the Playground and click Optimize. The model scans for logical contradictions, ambiguous formatting instructions, and gaps between the prompt text and any attached examples.
- Review inline diffs. Suggested edits appear as annotated changes with a rationale for each one, so you can accept, reject, or ask for a narrower fix.
- Iterate with targeted requests. You can respond conversationally — "keep the JSON schema but tighten the tone rule" — and the optimizer refines again instead of rewriting from scratch.
- Save as a Prompt Object. The final version saves with a
prompt_idand version number, so it becomes a reusable, versioned asset instead of a copy-pasted string scattered across your codebase.
Manual prompt engineering vs. the OpenAI prompt optimizer
| Manual editing | OpenAI prompt optimizer | |
|---|---|---|
| Diagnosis | Read-through by a human, easy to miss contradictions | Automated contradiction and gap detection |
| Baseline metric | Rarely measured before/after | Benchmarked against your eval set |
| Version control | Copy-pasted across docs/scripts | Saved as versioned Prompt Object |
| Model migration (e.g. GPT-4o to GPT-5) | Rewritten from scratch | Guided re-optimization against new model behavior |
| Time per pass | 30-90 minutes of guesswork | Minutes, with a rationale attached to each edit |
The real growth cases
1. OpenAI's own cookbook benchmark. In the official "GPT-5 Prompt Migration and Improvement Using the New Optimizer" cookbook (Aug 2025), OpenAI ran the optimizer against two production-style tasks. On a coding benchmark (top-K frequent words), peak memory usage dropped from 3,626.3 KB to 577.5 KB — an 84% reduction — while LLM-judged instruction adherence rose from 4.40 to 4.90 out of 5, with exact-match accuracy held at 100%. On FailSafeQA, a finance question-answering robustness test, the optimized prompt lifted robustness scores from 0.320 to 0.540 (+68.75% relative) and context grounding from 0.800 to 0.950.
2. Orq.ai's GEPA-based optimization run. The LLMOps platform Orq.ai optimized a trace-topic-classification prompt on GPT-4o-mini and took accuracy from 10.80% to 47.60% — a 4.4x relative gain — for a total optimization cost of $0.48 across 450 evaluation calls and roughly 10 minutes of compute. The same optimized prompt, tested across six different model families without further tuning, delivered an average lift of +34.7 percentage points.
3. Nubank's production customer-support agents. In a June 2026 paper on running AI agents at 100-million-user scale, the fintech Nubank applied GEPA-based prompt optimization to its evaluation and judge prompts. The card-delivery support agent gained +37 percentage points in transactional NPS and +29 points in self-service rate after optimized prompt versioning, landing within 10 points of expert human agents. The same method generalized to four more use cases, including a +40-point NPS gain in debt management support.

Common mistakes when optimizing prompts
- Optimizing without an eval set. No baseline means you can't prove the new prompt is actually better, not just different.
- Accepting every suggested edit blindly. Review the rationale — some fixes tighten formatting at the cost of flexibility you needed.
- Skipping re-optimization after a model upgrade. A prompt tuned for GPT-4o will carry hidden assumptions that GPT-5 doesn't need.
- Never saving a Prompt Object. Without versioning, teams re-discover the same contradictions every few months.
- Treating optimization as one-and-done. Orq.ai's second run still found +10.95 points of headroom — plan for iteration.
Where Concat Pro fits
Prompt optimization is one lever. The bigger lever is making sure the optimized content actually gets found and cited by AI search surfaces once it's published. Concat Pro's SEO/GEO Agent applies the same evaluation-driven logic — measure, diagnose, fix, re-test — to content briefs and on-page structure so your output ranks in both classic search and AI Overviews. Pair it with the Growth Rate Calculator to model how much a lift like the ones above (68% robustness, 37-point NPS) actually moves pipeline over a quarter.
For a hands-on walkthrough of the optimizer inside the Playground, Matthew Berman's "How to Make Better Prompts for GPT-5" demos the exact optimize-and-diff flow described above.
References
- Concat Pro, SEO/GEO Agent
- Concat Pro, Growth Rate Calculator
- OpenAI Cookbook, "GPT-5 Prompt Migration and Improvement Using the New Optimizer" by Raj Pathak and Corwin Cheung
- Nubank, "Building Customer Support AI Agents at 100M-User Scale: An Evaluation-Driven Framework", arXiv, June 2026