# AGENTS.md

⚡️ Express inspired web framework written in Go

## Setup

```
go mod download
```

## Commands

```
make help
make audit
make benchmark
make coverage
make format      # format
make markdown
```

## Layout

- `middleware/` 158 source files
- `internal/`   33 source files
- `binder/`     25 source files
- `client/`     18 source files
- `log/`        7 source files
- `addon/`      4 source files

## Conventions

- Tests live alongside the code they cover, following `.github/testdata/fs/css/test/style2.css`.
- CI defines what passing means. See `.github/workflows/after-release.yml`, and keep it green.
- TODO: add the two or three conventions a newcomer always gets wrong here.

## Gotchas

- `ctx_test.go` is 323KB. 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.
