# AGENTS.md

The design language that makes your AI harness better at design.

## Setup

```
bun install
```

## Commands

```
bun build                  # produce a build
bun test                   # run the test suite, must pass before any commit
bun build:skills
bun build:skills:release
bun build:release
bun build:browser
bun build:extension
bun clean
```

## Layout

- `tests/`     251 source files
- `plugin/`    107 source files
- `skill/`     86 source files
- `cli/`       25 source files
- `scripts/`   25 source files
- `extension/` 6 source files

## Conventions

- Tests live alongside the code they cover, following `tests/build.test.js`.
- 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.

## Gotchas

- `.agents/skills/impeccable/scripts/live-browser.js` is 489KB. 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.
