# Stealthrekt Quickstart

Install from a repo checkout while the beta package is prepared:

```bash
pip install -e .
playwright install chromium
stealthrekt doctor
stealthrekt run examples/captcha_form.json --run-dir runs/quickstart
stealthrekt run captcha_form --run-dir runs/bundled-captcha
stealthrekt run human_handoff --run-dir runs/bundled-human
```

The run writes `runs/quickstart/proof.json` and `runs/quickstart/proof.png` with challenge status, resolution method, confirmation text, and screenshot evidence.

For local development without install:

```bash
PYTHONPATH=src python3 -m cli.main doctor --json
PYTHONPATH=src python3 -m cli.main run examples/captcha_form.json --json --run-dir runs/quickstart
```
