# AGENTS.md

Use Claude Code, Codex, Pi, and OpenCode for free (1.3B+ free tokens) from your terminal, app, IDE, or phone like OpenClaw (voice supported + ToS friendly)

## Setup

```
uv sync
```

## Commands

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

## Layout

- `src/`     276 source files
- `tests/`   210 source files
- `smoke/`   42 source files
- `e2e/`     3 source files
- `scripts/` 3 source files

## Conventions

- Tests live alongside the code they cover, following `e2e/test_admin_models.py`.
- CI defines what passing means. See `.github/workflows/dependency-cache.yml`, and keep it green.
- TODO: add the two or three conventions a newcomer always gets wrong here.

## Gotchas

- Copy `.env.example` before running anything that needs configuration.

---

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.
