Why Prompt Engineering Won’t Save a Broken Workflow

Prompts can shape model behaviour, but they cannot repair missing evidence, unclear ownership or wasteful handoffs.

3 minute readBy Lucas North

Prompt engineering is useful. It can clarify a task, constrain a format, supply examples and reduce avoidable ambiguity. It cannot make stale data authoritative, resolve contradictory policy or remove the need to copy an answer through four disconnected systems.

Enterprise AI teams often spend weeks refining prompts because the prompt is the easiest part of the system to change. The surrounding workflow is politically and technically harder, which is precisely why it remains untouched.

The prompt inherits the process

Take a common request: use AI to draft a response to a customer complaint. The apparent task is text generation. The real workflow may require finding the correct account, assembling contact history, identifying the relevant policy version, deciding an appropriate remedy, obtaining approval and recording the outcome in a case system.

If those inputs are scattered, permissions are unclear and nobody owns exceptions, a longer prompt does not create a product. It creates a more elaborate request for the model to guess across organisational gaps.

Before changing the prompt, map:

  • where authoritative evidence comes from and who owns it;
  • which decisions are advisory and which create commitments;
  • what the user must verify and how much effort that takes;
  • which systems receive the result;
  • what happens when evidence is missing or contradictory;
  • who owns the work when automation stops.

This often reveals that the valuable engineering work is retrieval, integration, policy or product design rather than wording.

Keep probabilistic work inside a bounded role

Use the model for tasks that benefit from interpretation: summarising evidence, classifying intent, comparing text, extracting candidate structure or drafting language. Keep permissions, monetary limits, mandatory fields and irreversible state transitions in deterministic controls.

A prompt that says “never approve refunds above £500” is not an authorisation boundary. It is an instruction given to a variable component. The application should validate the proposed action against policy and user authority before any side effect occurs.

The same distinction applies to output quality. If downstream code needs JSON, validate it against a schema. If an answer requires citations, verify that claims refer to retrieved sources. If uncertainty should stop the workflow, design a refusal and escalation path. Asking the model more firmly is not validation.

Treat prompts as application logic

Prompts still deserve engineering discipline. Version them with the application, review changes and evaluate them against representative cases. Record the prompt and model versions in operational traces so failures can be reproduced. Separate stable policy and domain context from task instructions where that improves ownership and change control.

Avoid evaluating only the response in isolation. A new prompt may produce more polished text while increasing review time, omitting necessary evidence or encouraging users to accept unsupported claims. Measure the completed job: correction effort, safe refusals, processing time, overrides and business outcome.

Fix the workflow before optimising the sentence

The most effective AI improvement may be publishing a reliable knowledge source, simplifying an approval, exposing an API or removing a handoff. Sometimes the right result is a smaller prompt because the system now supplies clean evidence and enforces the rules itself.

Prompt engineering becomes valuable once the product has a clear task and boundary. Then wording can improve a defined piece of work. Before that point, prompt iteration polishes the most visible probabilistic step while leaving the causes of failure untouched.

Written by

Lucas North

I build enterprise software and write about the decisions, constraints and failure modes that rarely fit into a product announcement.

More about me →