# AGENTS.md

📜 33 JavaScript concepts every developer should know.

## Setup

```
npm ci
```

## Commands

```
npm run test            # run the test suite, must pass before any commit
npm run test:watch
npm run test:coverage
npm run docs
npm run docs:build
```

## Layout

- `tests/` 66 source files
- `docs/`  1 source file

## Conventions

- Tests live alongside the code they cover, following `tests/advanced-topics/algorithms-big-o/algorithms-big-o.test.js`.
- CI defines what passing means. See `.github/workflows/tests.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.
