# Reading the report

> What AGGREGATE.md says, in the order it says it.

Open `runs/<site>/AGGREGATE.md` first. It fits on one page. `DETAIL.md` beside it holds every table behind it.

## The one-page report

The sections, in the order they appear:

- 01
**The one number**
How many completed, walked out with a reason, or ran out of patience. Sessions that could not run are counted apart, never as a drop-off.
- 02
**How sure**
Every wall and repeated finding shows its count with a 95% interval.
- 03
**Fix these first**
The three pages people left from, who left, one quote, and what they did just before, so you can reproduce it.
- 04
**Measured on the page**
A ruler, not a persona: controls with no accessible name, tap targets under 24px, sideways scroll, missing viewport meta.
- 05
**For developers**
Element refs cited by more than one session. Refs seen once are listed as unverified, not hidden.
- 06
**Also found by the crawler**
Real 404s and unreachable links.
- 07
**Variants compared**
After two --variant runs, which side leaks more, or no meaningful difference.

## How sure it is

Counts come with an interval, so a small run cannot pass for a big one.

```
Plan picker reads like a confirmation
  3/5 sessions · 60% [23–88%]

Docs link 404 on /pricing
  1/2 sessions · too few to call
```

Note

Read every finding as a risk to check, not a measurement of your traffic. A simulated prospect stalling is a signal that real visitors could.

## Mark what was real

After a report, `runs/<site>/VERDICTS.md` is written once, with a `?:` line per wall. Change each to `real:` or `false:` and the next report counts your verdicts.

```
real:  signup step 2 plan picker reads like a confirmation
false: docs link 404 (fixed before the run)
?:     google sign-in returns to the homepage
```

## The evidence behind it

Every session keeps what it saw, so you can check a finding instead of trusting it.

| File | What it is |
|---|---|

| `video.mp4` | The recording. Plays in QuickTime and Safari. Needs ffmpeg, otherwise video.webm. |
| `filmstrip.html` | Every step with its screenshot and thought. No video player needed. |
| `shots/` | A retina screenshot per step, plus a render of every email received. |
| `report.md` | That session's story, with links to the evidence. |
| `FIXES.md` | The expert panel's proposed fix. |

```
leakdown --report your-site.com
```

---
Source: https://docs.leakdown.dev/reading-the-report
