Explicit Criteria vs Vague Instructions
Explicit Criteria vs Vague Instructions
The single highest-leverage prompting skill is replacing vague intent with explicit, checkable criteria. Claude is highly capable, but it cannot read your mind. When you say "make this email better," you have a definition of "better" in your head — tone, length, audience, what to cut — that never reaches the model. The result is a guess. When you instead spell out the criteria, the output becomes predictable and, crucially, verifiable.
Why vague prompts fail
A vague prompt forces the model to silently fill gaps with priors. Those priors vary run to run, so output is inconsistent. Worse, you have no objective way to tell whether a given output is "correct," which makes evaluation and regression testing impossible. Explicit criteria turn a subjective task into one you can grade against a rubric.
Vague vs explicit
The explicit version specifies the audience, format, length, content per slot, and an escape hatch for missing information. Every one of those is something you can mechanically check.
A practical checklist
When writing a prompt, make these explicit:
- Audience & purpose — who reads this and what decision do they make?
- Format & length — exact structure (bullets, JSON, headers) and limits.
- Inclusion / exclusion rules — what to always include, what to never add.
- Edge-case handling — what to do when data is missing, ambiguous, or empty.
- Definition of "good" — the rubric you would use to grade the output.
Positive framing beats negation
Tell Claude what to do, not just what to avoid. "Respond in plain prose, no headers" is weaker than "Respond as a single paragraph of plain prose." Models follow concrete targets more reliably than prohibitions, and positive instructions reduce the chance of an over-corrected response.
Reducing hallucination with criteria
Explicit criteria are also a primary hallucination control. Instructing "Only use facts present in the provided document; if the answer is not stated, reply 'not found'" gives the model a sanctioned way to decline rather than fabricate. Pair this with a structured output slot (covered in Module 2) such as a confidence or source_quote field, and the model must ground each claim.
Exam focus
Expect a question contrasting a vague instruction with a precise rubric, asking which yields consistent, evaluable output — the explicit-criteria version wins. Remember the principles: state audience/format/length, give edge-case escape hatches ("unknown"/"not found"), prefer positive framing over prohibitions, and treat criteria as the rubric you grade against. Explicit criteria reduce variance AND hallucination.