← Framework
04PROMPTS

Prompt Quality

Structure, specificity, and validation discipline of your prompts.

What it measures

Before sending a prompt, can you state exactly what the output must satisfy for you to accept it?

The four diagnostic questions

  1. 01Each prompt contains only the context relevant to that specific task — not the full data model or all rules.
  2. 02Prompts express business logic as explicit conditions (if X then Y, must not Z), not vague prose.
  3. 03Every prompt has a testable Definition of Done. You know before sending whether the output will be acceptable.
  4. 04You batch related changes into single prompts with ordered steps rather than sending incremental one-liners.

What good looks like

Strong prompt discipline. Consider whether batching could further reduce round-trip overhead.

Common failure mode

Prompts are too broad. Scope context to the task, express logic as conditions not prose, and define what done looks like before sending.

Critique & references

Editor's notes — to be expanded

Calls out negation blindness — the structural asymmetry where prohibitions are processed less reliably than affirmative instructions. Explicit conditional logic (if/then/must-not) reduces parsing ambiguity more than tone or politeness ever does.