# AGENTS.md

Use Garry Tan's exact Claude Code setup: 23 opinionated tools that serve as CEO, Designer, Eng Manager, Release Manager, Doc Engineer, and QA

## Setup

```
bun install
```

## Commands

```
bun dev                    # run locally
bun start                  # run the app
bun build                  # produce a build
bun test                   # run the test suite, must pass before any commit
bun vendor:xterm
bun dev:make-pdf
bun dev:design
bun build:diagram-render
```

## Layout

- `test/`    438 source files
- `browse/`  206 source files
- `scripts/` 84 source files
- `lib/`     35 source files
- `design/`  33 source files
- `ios-qa/`  26 source files

## Conventions

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

## Gotchas

- `test/gen-skill-docs.test.ts` is 164KB. It will not fit comfortably in context, so read it in parts.
- Copy `.env.example` before running anything that needs configuration.

---

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.
