Skip to main content

Why "One-Shot" Prompting is Failing You - Digital Compliance Academy

Expecting a perfect result from a single prompt is like expecting a perfect meal after shouting "COOK!" at a chef. Learn the art of iterative prompting.

Jon McGreevy September 13, 2025 3 min read
Prompt Engineering Iterative Workflow CLEAR Framework Tips

There is a myth that “Prompt Engineers” are wizards who incant magic spells. They type one perfect, 50-line block of code into Claude, hit enter, and the AI produces a Pulitzer Prize-winning article.

This is nonsense.

Real AI interactions are messy conversations. They are back-and-forth. They are iterative.

If you are trying to “One-Shot” everything—typing a single massive prompt and praying for a perfect result—you are making life hard for yourself, and you are getting mediocre results.

The “Instruction Drift” Problem

Large Language Models (LLMs) suffer from something called Instruction Drift. The longer and more complex your single prompt is, the more likely the AI is to forget parts of it.

If you ask for 10 distinct tasks in one paragraph: “Read this, summarise it, translate it to French, format as a table, check for bias, email it to Dave…”

It will likely do 6 of them well, 2 of them badly, and completely forget the other 2.

The “Chain of Thought” Solution

Instead of one big prompt, break the task down into a chain. Have a conversation. This is how Claude 3.5 Sonnet thrives—it remembers the whole context, so you can build on previous answers.

The Linear Workflow (Bad)

  • User: [Massive Prompt]
  • AI: [Massive Output with errors]
  • User: “No, you forgot X, and Y is wrong.”
  • AI: “I apologise.” [Rewrites whole thing, fixes X, breaks Z].

The Step-by-Step Workflow (Good)

Step 1: Ingest & Analyse

“Here is some raw data (attached). Please just read it, analyse it, and tell me the main 3 trends you see. Do not write the report yet.”

(AI responds with trends. You verify them. “Yes, those trends are correct.”)

Step 2: Structure

“Great. Now, based on those trends, outline a structure for a 500-word blog post. Just the headers.”

(AI responds. “I like headers 1 and 2, but change header 3 to focus on Cost.”)

Step 3: Draft

“That structure is perfect. Now, write the Introduction and Section 1 only.”

(AI responds. You tweak the tone.)

Step 4: Completion

“Perfect tone. Now finish the rest of the post.”

Why this works better

  1. Correction: You catch errors early. If it misunderstood the data in Step 1, you fix it before it wastes tokens writing 2,000 words based on a mistake.
  2. Focus: The AI gives its full “attention” to one task at a time. It writes a better outline when it isn’t also worrying about grammar. It writes better grammar when it isn’t worrying about structure.
  3. Control: You steer the ship. You are the Director; the AI is the Actor.

When to use One-Shot?

One-shot prompting (sending a single instruction) is fine for simple, low-stakes tasks:

  • “Summarise this email.”
  • “Give me 5 ideas for a title.”
  • “Fix the spelling in this paragraph.”

But for anything that requires reasoning, strategy, or complex creation? Stop trying to be a wizard. Just be a manager. Give one instruction at a time, review the work, and then give the next one.

It feels slower to type more prompts. But it is actually much faster, because you don’t have to spend an hour rewriting a disaster.