# AGENTS.md

A collection of notebooks/recipes showcasing some fun and effective ways of using Claude.

## Setup

```
uv sync
```

## Commands

```
make help
make format         # format
make format-check
make lint           # lint
make check          # lint and type check
make fix
```

## Layout

- `managed_agents/`   65 source files
- `capabilities/`     31 source files
- `claude_agent_sdk/` 27 source files
- `tool_use/`         17 source files
- `skills/`           11 source files
- `tests/`            6 source files

## Conventions

- Tests live alongside the code they cover, following `capabilities/text_to_sql/evaluation/tests/test_above_average_salary.py`.
- CI defines what passing means. See `.github/workflows/claude-link-review.yml`, and keep it green.
- TODO: add the two or three conventions a newcomer always gets wrong here.

## Gotchas

- 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.
