Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,23 @@ category from the sidebar, one folder under `docs/`, or one page.
Stop at 20 changed files and open a PR (see `update-content/SKILL.md`).
Translations go in their own PR per locale and do not count toward the 20.

Mechanical changes that the build or a script checks, such as rewriting links
or running Prettier, can go in one PR of any size. Keep that PR to the
mechanical change only, so it stays quick to review.

## Checking a change

Before opening any PR, build the site as CI does. It fails on broken links:

```bash
yarn generate-library
yarn generate-adaptors
yarn build
```

Broken-anchor warnings do not fail the build, and `main` already has some. Fix
only the ones your change adds.

## House style

- Every page has a `title` in its front matter.
Expand Down
Loading