Zenaique

Why do six short, specific instructions usually beat one long paragraph of guidance?

Flashcard·Easy·4.0 · 0·~30s·Asked atAndurilCursorNetflix
Attempt it
TL;DR

Bulleted instructions are dense, testable, and cheaper in tokens; paragraphs hide rules inside connective tissue and reduce evals to gestalt checks.

Memory aid
Sign in to see the mnemonic that makes this stick.
Easy to grasp

Picture a kitchen with two sets of recipe instructions on the wall. One is a paragraph in flowing prose with the steps embedded inside connective sentences. The other is six short bullet points. New cooks doing the same dish under time pressure mess up the paragraph version more often, not because they cannot read English but because each step is hard to find inside the prose. The bullet version has one rule per line. You can point at the one that got missed. You can train someone by walking through each line. You can put a checkmark next to each one. The model running your system prompt is in the same situation as the cook under time pressure.

Concept explanation~2 min read

Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.

System prompts get written by humans who naturally produce flowing English because that is how humans write well. The model on the other side processes tokens through attention, and the structure that helps human writing often hurts model adherence. Bullets and paragraphs are not just two styles; they are two different surfaces the model treats differently and that the production team can test differently.

This card walks through why the bullet form usually wins for rule sets, where prose is still the right tool, and how to lay out a system prompt that plays each surface to its strength.

What the model sees in each format

A bulleted list is structurally explicit: each bullet is a separate line, often starting with a dash or number, and the model has seen millions of training examples where this format encodes discrete rules or items. Attention can localize to a single bullet and process it as a unit. Output adherence to a single bullet does not depend on the model correctly parsing the bullet next to it.

A paragraph buries rules inside narrative flow. The same rules are present, but they are connected by tokens like "and", "meanwhile", "in addition", "that said". The model reads the paragraph as a coherent passage and is more likely to extract the tone of the paragraph ("this is a careful, formal context") than the rules the paragraph contains.

Empirical signature

Production teams that have done the conversion (paragraph to bullets, no other changes) consistently report improved rule adherence on the same eval set. The lift is not huge on simple tasks but it is real on rule-heavy ones. Anthropic and OpenAI both surface this in their official prompt-engineering guides.

The testability argument
The token-cost and maintenance arguments
When prose is the right tool
How to convert a paragraph prompt to bullets
Sign in to unlock the full deep dive.

Situations where this technique stops working.

Sign in to see when this approach fails.

2–4 min · Everything important, quickly.

Sign in to see the quick scan of the deep dive.

Real products, models, and research that use this idea.

  • Anthropic's published system-prompt patterns for Claude Opus 4.7 use a short persona paragraph followed by a numbered rule list followed by output-format hints.
  • OpenAI's 2026 prompt-engineering guide for GPT-5.5 explicitly recommends bullet-list rule sections over flowing prose for instructions.
Sign in to see more production examples.

What an interviewer would ask next. Try answering before peeking at the approach.

QWhat does a good per-rule eval look like in practice?
A

One judge-LLM eval per rule with a pass-fail prompt: 'Does this output respect [rule N]? Answer yes or no.' Run across a labeled set; track pass rate per rule across versions.

2 more follow-ups an interviewer would ask next. Sign in to reveal them.

Red flags & common mistakes

The phrases that signal junior thinking. Click to expand.

Most common mistake

Writing system prompts as flowing English because it reads well to humans. The model is not the audience that benefits from connective tissue; bullets are denser, more testable, and usually cheaper per call.

Sign in to see all red flags and common mistakes.

60 second bullets to scan on the way to the call.

  • Why a model treats bullets and prose differently during attention

  • Why bullets are cheaper in tokens than equivalent prose

Sign in to unlock the revision sheet.

Primary sources. Browse if you want the original framing.

Similar questions

Same topic, related formats. Practice these next.

4 curated
Next question
Pick the most effective intervention when an agent's context grows by 8KB every iteration
MCQ·Medium