A score card is the result of scoring content against a model. It reports a score for each of the model’s traits, a single composite, and — per trait — the context needed to interpret the number: a tier label, a confidence signal, and headroom to the next tier.Documentation Index
Fetch the complete documentation index at: https://u22a8-police-sweep-2026-06-01.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Definition
For a model with traits , scoring content returns a score for each trait , a composite equal to the harmonic mean of the trait scores, and per-trait detail. The card is deterministic: the same content and the same model version always produce the same card.Mechanism
Each trait score is the position of the content’s embedding along that trait’s learned geometry, projected onto a 0–100 scale. Calibrated breaks divide that scale into tiers; the score’s position relative to its breaks yields the tier label and the headroom.| Field | Type | Meaning |
|---|---|---|
scores | object | Score (0–100) per trait, keyed by trait. |
composite | integer | Harmonic mean across traits — a low score on any trait pulls it down. |
confidence | high | moderate | low | How densely the training data surrounds this region. |
headroom | integer | null | The largest per-trait headroom — the bottleneck trait’s gap to its next break. null when no trait can be graded. |
detail.<trait>.label | string | Tier: Strong, Solid, Developing, or Weak. |
detail.<trait>.breaks | object | The calibrated thresholds (developing, solid, strong). |
detail.<trait>.band | array | [low, high] around the score — the inter-quartile span of its training cluster. |
detail.<trait>.native | object | The trait’s typed native metric (for example, polarity). |
u22a8.commit-message:
Interpretation
Read the composite first, then the traits that drag it. Because the composite is a harmonic mean, a single weak trait lowers it more than an arithmetic average would — a card with one Weak trait is not “mostly fine.”- Tier answers “how good, in plain terms?” Use it for thresholds and gates.
- Confidence answers “how much should this score be trusted?” A high score with low confidence sits in a sparsely-sampled region; treat it as provisional.
- Headroom answers “how close is the next tier?” Small headroom means a minor edit could change the label —
scope_precisionabove is 2 points below Strong. - Native answers the trait’s type-specific question and supports ranking, where the 0–100 score saturates.
Edge cases
- A model with one trait still returns a composite; it equals that trait’s score.
- When
confidenceislow, the score is still deterministic — low confidence reflects sparse training data near the input, not randomness. - Headroom is
0when the score is already Strong, andnullwhen confidence islow— a graded top score and a withheld grade are distinct.
Next
Quickstart
Produce a score card of your own.
REST API
The endpoint that returns it.