DEV Community

Cover image for Stop Writing Perfect Prompts. Give the Model a Practice.
Monyet Batu
Monyet Batu

Posted on

Stop Writing Perfect Prompts. Give the Model a Practice.

We keep trying to make LLMs reliable by writing the perfect prompt.

Lay out every step. Number them. Anticipate each branch. Specify the
output format, the edge cases, the tone. Build the plan so completely
that the model has nothing left to do but execute it.

And it half works. Until the work changes slightly, or the input arrives
in a shape you didn't foresee, and the plan that was supposed to guarantee
the result is suddenly the thing getting in the way.

I spent a long time building harnesses this way. Rich function
descriptions, clear specs, every primitive exposed and well-named. The
system was brittle anyway. Sometimes the model reached for the right tool;
sometimes it didn't. Change one thing and something that had worked
stopped working. The information was all there. The reliability wasn't.

The problem was not that the plan was incomplete. The problem was
that I was treating the plan as the engine of action,
rather than as a resource for action.

Plans don't cause action

In 1987, Lucy Suchman made a distinction that has aged better than almost
anything written about computers since. Plans, she argued, do not cause
action. They are a resource we draw on while acting in a situation. The
real work happens in situ — moment to moment, reading where you are, what
is at hand, what would count as a sensible next move. The plan is a story
we tell before and after. It is not the thing that does the work.

A skilled practitioner doesn't follow a plan. They have situated
awareness: a working grasp of the practice as it unfolds. A carpenter
faced with a knot in the wood doesn't consult a flowchart. They know what
the wood affords, what the tools offer, what the job is for — and they
respond.

That is what the LLM was missing. Not a better plan. Situated awareness.

What you give instead of a plan

There is a long body of work on how practices actually work — practice theory,
running from Wittgenstein through Schatzki, Reckwitz, Shove.
It describes a practice as a bundle of constitutive elements: the ends and
orientations that give the work direction, the practical understandings that
let someone recognise what to do, the rules, the affordances, the materials.

That bundle is the captured structure of a practitioner's situated
awareness about a kind of work. And it turns out you can hand it to an
LLM.

Not as a script to follow. As a resource to hold while acting. Give the
model the bundle — the purpose, the understanding, the rules, what the
tools afford — and let it be the practitioner. Then point it at the end
result and get out of the way.

The difference is not subtle. A model holding a practice doesn't need
every step spelled out, because it understands what the work is for. It
recognises the situation and responds to it. When the input arrives in an
unexpected shape, it doesn't break — it does what a competent practitioner
does, which is to read the circumstance and meet it.

Competence meets circumstance. That is the whole thing.

What this looks like in a harness

In practice, this means I no longer start by giving the model a long
procedural prompt.

I give it a practice.

A practice bundle might contain:

  • Teleo-affective structure: what the work is for, and the stance to take
  • Understanding: what matters in this kind of situation
  • Rules: what must be preserved or avoided
  • Affordances: what the available tools make possible
  • Materials: what the model is acting with and on

For example, instead of:

  1. Read the calendar.
  2. Check for conflicts.
  3. Decide whether the event matters.
  4. Ask for clarification if needed.
  5. Apply the change.

I give it the structure of calendar stewardship: what the practice is for,
what counts as care, what rules constrain action, what affordances the
calendar tools provide, and what kinds of judgement matter.

The model is still bounded — it still has tools, rules, and checks. But the
centre of gravity moves from procedure to situated competence.

When the situation shifts, it is not trapped inside the original plan; it reads
the circumstance, uses the affordances at hand, and continues towards the goal.

There is no plan

The instinct to over-specify comes from a culture that has taught us to
trust plans over responsiveness — to believe that the confident, detailed,
step-by-step account is the real work, and the messy in-the-moment
judgement is just noise to be engineered away.

It is the other way around. The judgement is the work. The plan was
always just a story about it.

So stop writing the perfect prompt. Give the model situated awareness, and
let it focus on the end.

There is no plan. There was never a plan. Things get built anyway.


The work behind this

This is the short version. The full argument — including a working
implementation, an autonomic self-improving loop, and a worked example
running under a real LLM harness — is set out across four essays, best
read in order:

  1. AI Trust and Situated Awareness: A Practice Theory Reframe
    — the reframe, from "meaning layer" to situated awareness.
    10.5281/zenodo.20306761

  2. Practice Theory — The Apprenticeship and a Strange Loop
    — how the practice is transmitted, and how the system maintains itself.
    10.5281/zenodo.20354614

  3. Practice Theory — The Implementation
    — a walk-through from a real practice to running code.
    10.5281/zenodo.20405699

  4. Practice Theory — A Worked Example (Calendar Stewardship)
    — a single practice, enacted end to end under a live harness.
    10.5281/zenodo.20406162

Companion software:
practice-theory-implementation
10.5281/zenodo.20405235

Monyet Batu — symagenic.com ·
ORCID 0009-0007-9002-5381

Top comments (0)