# Your data

> What a run stores, where, and how to delete it.

Everything lands under `runs/<site>/` on the machine that ran it. Nothing is uploaded.

## What is stored

Each session writes these files, and some of them contain things you typed or saw.

| File | Contains |
|---|---|

| `session.jsonl` | Every thought, and every string a prospect typed, including the names and passwords it invents. |
| `shots/` | A screenshot per step, plus a render of every email received. |
| `video.mp4` | Whatever the page showed. Past a signup, that includes your own dashboard. |
| `meta.json` | The URL, brain, model, effort, version and variant. |

## Delete it

Deleting the folder deletes the run. There is no other copy.

```
rm -rf runs/your-site.com
```

Requested runs are different: they live on our side. [What we keep](https://docs.leakdown.dev/requested-runs#what-we-keep) explains how to have them deleted.

---
Source: https://docs.leakdown.dev/your-data
