exploring-replay-vision-observations
Installation
SKILL.md
Exploring Replay Vision observations
A scanner is a standing LLM probe over session recordings; each time it runs against a session it records one observation. This skill is about the other half of the loop — reading what the scanners have found and doing something useful with it. For creating or sizing scanners, use [[creating-replay-vision-scanners]].
Mental model
- Scanner → observations. One observation = one scan of one session. There is at most one observation
per
(scanner, session). - The finding lives in
scanner_result. Its shape depends on the scanner'sscanner_type, but it always carries aconfidence:monitor→ averdict(yes/no/inconclusive) plus an open-ended observation.classifier→ one or moretagsfrom the scanner's label set.scorer→ a numeric score on the scanner'sscale.summarizer→ a free-text summary (optionally with facet embeddings).
- Only
succeededobservations carry a finding. Triage the rest bystatus/error_reason(see below). - Observations are LLM judgments, not ground truth. One observation is one model's read of one session — corroborate before you act on it.