Text Classification Prompt — the Anatomy
The blocks a reliable classification prompt needs: defined labels, classification rules, edge-case rules, an ambiguity policy, and a confidence contract.
Overview
A classification prompt that just lists label names leaves every real decision to the model. The reliable anatomy has five blocks: LABELS with one-sentence definitions (the classifier itself), CLASSIFICATION RULES (judge content not tone, match definitions not names), EDGE CASE RULES (what to do when two labels fit), an AMBIGUITY POLICY, and a CONFIDENCE contract. This resource loads a product-request taxonomy — New Feature, Improvement, Integration, Performance, UX — where the definitions carry the entire New-Feature-vs-Improvement distinction.
Workflow
-
Read the blocks in order
Labels define, rules constrain, edge cases resolve ties, ambiguity handles misfits, confidence enables routing — each block closes one failure mode.
-
Study the New Feature / Improvement border
"Does not have at all today" vs "should work better" — one adjective pair does what three paragraphs of instructions wouldn't.
-
Swap in your own taxonomy
Replace the labels with yours; known label names get library definitions automatically, domain-specific ones need your sentence.
Why This Works
- Definitions turn labels from words into checkable rules
- Tie-breaking rules ("prefer the more specific definition") remove the model's discretion where it's least reliable
- Each block is short because it does one job — no rule soup
Best for
- Anyone whose classification prompt is currently a bare label list
- Taxonomies with adjacent categories that models confuse
- Teams standardizing classification across many prompts
Not for
- Extracting values from the text — extraction and classification are different tools
- Open-ended tagging without a fixed label set — this anatomy assumes a closed set
Use cases
- Learning the structure before building your own classifier prompts
- Auditing an existing classification prompt against the five blocks
- Classifying product requests by type for roadmap planning