# AGENTS.md

Python packaging and dependency management made easy

## Setup

```
poetry install
```

## Commands

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

## Layout

- `tests/` 254 source files
- `src/`   192 source files

## Conventions

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

## Gotchas

- `tests/puzzle/test_solver.py` is 176KB. 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.
