# AGENTS.md

Run frontier AI locally.

## Setup

```
npm ci
```

## Commands

```
pytest         # run the test suite
ruff check .   # lint
cargo test     # run the test suite
```

## Layout

- `src/`       217 source files
- `dashboard/` 43 source files
- `app/`       26 source files
- `rust/`      15 source files
- `tmp/`       12 source files
- `tests/`     8 source files

## Conventions

- Tests live alongside the code they cover, following `rust/exo_rs/tests/dummy.rs`.
- CI defines what passing means. See `.github/workflows/build-app.yml`, and keep it green.
- TODO: add the two or three conventions a newcomer always gets wrong here.

## Gotchas

- `dashboard/src/routes/+page.svelte` is 258KB. It will not fit comfortably in context, so read it in parts.

---

Drafted by agentreadme.com from what is in this repository. Everything marked TODO
needs a human. Check it in as AGENTS.md at the root.
