Inference No. 004
Wednesday, June 10, 2026 5 min read Written by Frank Insalaco

The quiet death of the prompt engineer

Prompt engineering didn't disappear — it got absorbed into a bigger discipline. Here's what actually matters now, and the eval habit that replaces "finding the right wording."

01
The Signal ~3 min

The quiet death of the prompt engineer

In 2023, "prompt engineer" was floated, semi-seriously, as a six-figure job that required no computer science degree — just a knack for finding the magic words that made a model behave. Job boards filled up with the title. Twitter threads promised "10 prompts that will change your life." An entire cottage industry of prompt marketplaces appeared, selling text files for money.

That title has now mostly vanished from job postings. Not because the underlying work stopped mattering — but because the work changed shape so much that the old name stopped fitting.

Why "the right incantation" stopped being valuable

Early models were genuinely brittle. Rephrasing a request — adding "think step by step," switching from a question to an instruction, capitalizing certain words — could swing output quality dramatically. In that environment, knowing the right phrasing was a real skill, and a scarce one.

Newer models are far more robust to phrasing. The same underlying intent, expressed in a dozen different ways, now produces results that are far more consistent. Some of the "best practices" from 2023 — elaborate persona-setting, specific magic phrases, formatting tricks — measurably stopped making a difference somewhere in the last eighteen months. The skill of finding the perfect wording got commoditized at roughly the same rate models got better at understanding plain ones.

What didn't go away — it moved upstream

If you've been following the last three issues, you already know where this is going. Issue 001 was about context windows becoming enormous. Issue 002 was about retrieval architecture. Issue 003 was about agent failure modes. Each of those is, in its own way, about the same underlying shift: the hard problem moved from "what words do I use?" to "what does the model have access to, structured how, and how do I know if it's working?"

Call it context engineering, call it AI systems design — the name matters less than the shape of the work. It now looks like:

Context design. Deciding what information the model sees, in what order, with what structure — directly informed by how attention actually behaves across long contexts (see Issue 002's "lost in the middle" discussion).

Output structure. Function calling and structured outputs are now table stakes across every major provider. The skill isn't writing a clever prompt that produces JSON — it's designing the schema itself, and validating against it (Issue 003, failure mode 2).

Evaluation. This is the big one, and it's the one most individuals skip. The honest answer to "is this prompt good?" was, for most of 2023 and 2024, vibes — try it a few times, see if it looks right, ship it. That doesn't scale, and it actively misleads you: a prompt that looks great on the three examples you tried can fail silently on the fourth.

The actual takeaway

If your job title was "prompt engineer," your job didn't disappear — it got renamed to "AI systems engineer" or "applied AI engineer," and it got considerably more interesting. If you're learning AI skills from scratch, the highest-leverage thing to learn isn't a library of clever phrasings. It's how to build a small evaluation set for whatever you're building, so that when you change a prompt, a model, or a piece of context, you have a number — not a feeling — that tells you whether it got better or worse.

That habit is this issue's Tool Drop and Prompt, below.

02
Quick Hits ~1 min
  • 01 Major AI labs and AI-native startups have largely stopped posting "prompt engineer" roles, replacing them with "applied AI engineer" and "AI systems engineer" — same underlying skill set, framed around systems rather than wording.
  • 02 Function calling and structured outputs are now default behavior across every major model API — "getting the model to output valid JSON" is no longer a skill worth listing on a resume; it's a checkbox.
  • 03 "Evals" has become one of the most-searched terms among AI builders — the shift from vibes-based iteration to measured iteration is showing up in hiring posts, conference talks, and tooling roadmaps simultaneously.
  • 04 Several open-source eval frameworks crossed major adoption milestones this year — "evals-as-code," checked into the same repo as the prompts they test, is becoming the default pattern rather than the exception.
  • 05 A wave of "prompt marketplaces" from 2023 have quietly shut down or pivoted — selling individual prompts as a product made sense when prompts were scarce IP; it doesn't when models interpret intent reliably regardless of phrasing.
03
Tool Drop ~1 min
Promptfoo
promptfoo.dev · Open source

Promptfoo is an open-source command-line tool for testing prompts the same way you'd test code: define a set of test cases, define what a passing result looks like, run it against one or more models, and get a pass/fail grid back. It's the most direct, no-frills implementation of "evals" I've used.

The setup is a YAML file: a prompt template, a list of test inputs, and a list of assertions per test (contains a string, matches a regex, passes an LLM-graded rubric, or — if you want to get serious — a custom function). Run it, and you get a side-by-side comparison across however many prompt variants or models you want to test at once.

Why this matters more than it sounds: the moment you have even five test cases in a file, "should I change this prompt?" stops being a debate and becomes a command you run. I've caught regressions from a one-word prompt change that I never would have noticed by eye — the kind of silent quality drift that's invisible until a user complains.

Verdict If you've never written an eval before, this is the lowest-friction place to start. Fifteen minutes to your first test file, and you'll never want to go back to "looks fine to me."
04
Paper Trail ~1 min
"State of What Art? A Call for Multi-Prompt LLM Evaluation"
Mizrahi et al. · Hebrew University of Jerusalem · 2024

This paper makes a simple but uncomfortable point: when researchers report "Model X scores 87% on Benchmark Y," that number almost always comes from one specific prompt template. The authors re-ran standard benchmarks across dozens of semantically equivalent prompt variations — same question, different phrasing — and found the resulting scores swung by double-digit percentage points depending on which prompt happened to be chosen.

In other words: a meaningful chunk of the difference between "this model is great" and "this model is mediocre" in published benchmarks isn't the model at all. It's which of many roughly-equivalent prompts the researchers happened to type first.

The paper's recommendation is exactly the shift this issue describes: stop treating any single prompt as the source of truth, and evaluate across a distribution of prompts that express the same intent. A system that's robust across phrasing is a better system than one that's brittle but happens to score well on the phrasing someone tested.

TL;DR "The right prompt" was always a less stable foundation than it looked. The fix isn't a better prompt — it's an eval suite that doesn't depend on any single one.
05
The Prompt ~30 sec

Fittingly, this week's prompt isn't a prompt to use in production — it's a prompt that helps you build an eval set for the prompts you already have. Paste in any production prompt and a description of what "good" looks like, and get back a starter test set you can drop straight into a tool like Promptfoo.

System Prompt · Eval Set Generator
You are helping me build an evaluation set for a prompt I use in production.

I will give you:
1. The prompt itself (the template sent to the model)
2. A description of what a "good" output looks like

Generate the following:

1. FIVE TYPICAL INPUTS
   Realistic examples this prompt will commonly encounter
   in normal use.

2. FIVE EDGE CASE INPUTS
   Unusual, ambiguous, conflicting, or adversarial inputs
   that could plausibly break this prompt.

3. EXPECTED BEHAVIOR
   For each of the ten inputs above, one sentence describing
   what a correct response must do (not the full output —
   just the criteria for "correct").

4. PREDICTED FAILURE MODES
   Based on how the prompt is worded, identify 2-3 specific
   ways it is likely to fail — e.g. ambiguous instructions,
   missing constraints, undefined behavior for edge cases,
   or output format drift.

Be specific and concrete. Avoid generic test cases — tailor
everything to what this exact prompt is asking the model to do.

My prompt:
[PASTE YOUR PROMPT TEMPLATE HERE]

What "good" looks like:
[DESCRIBE THE CRITERIA FOR A CORRECT RESPONSE]

Run this once against any prompt you're relying on, turn the output into ten rows in Promptfoo, and you've gone from "looks fine to me" to an actual regression test in under twenty minutes.

Next Issue · Tomorrow Morning

Get the next one
in your inbox.

New issue every weekday at 7am. Free forever.

No spam. Unsubscribe in one click.