# AGENTS.md

🗂 The essential checklist for modern web development, for humans and AI agents

## Setup

```
pnpm install
```

## Commands

```
pnpm dev             # run locally
pnpm build           # produce a build
pnpm test            # run the test suite, must pass before any commit
pnpm typecheck       # type check without emitting
pnpm lint            # lint
pnpm format          # format
pnpm email:preview
pnpm lint:fix
```

## Layout

- `apps/`     305 source files
- `packages/` 181 source files
- `scripts/`  48 source files
- `configs/`  1 source file

## Conventions

- Tests live alongside the code they cover, following `apps/web/app/(site)/(account)/profile/profile-url-section.test.tsx`.
- CI defines what passing means. See `.github/workflows/ci.yml`, and keep it green.
- TODO: add the two or three conventions a newcomer always gets wrong here.

---

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.
