Bulleted instructions are dense, testable, and cheaper in tokens; paragraphs hide rules inside connective tissue and reduce evals to gestalt checks.
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.
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.
Situations where this technique stops working.
2–4 min · Everything important, quickly.
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.
What an interviewer would ask next. Try answering before peeking at the approach.
QWhat does a good per-rule eval look like in practice?
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.
Red flags & common mistakes
The phrases that signal junior thinking. Click to expand.
Red flags & common mistakes
The phrases that signal junior thinking. Click to expand.
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.
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
Primary sources. Browse if you want the original framing.
Same topic, related formats. Practice these next.