# AGENTS.md

CLI proxy that reduces LLM token consumption by 60-90% on common dev commands. Single Rust binary, zero dependencies

## Setup

```
cargo build
```

## Commands

```
cargo test   # run the test suite
```

## Layout

- `src/`      121 source files
- `scripts/`  19 source files
- `tests/`    13 source files
- `hooks/`    9 source files
- `Formula/`  1 source file
- `openclaw/` 1 source file

## Conventions

- Tests live alongside the code they cover, following `hooks/hermes/tests/__init__.py`.
- CI defines what passing means. See `.github/workflows/cd.yml`, and keep it green.
- TODO: add the two or three conventions a newcomer always gets wrong here.

## Gotchas

- `src/hooks/init.rs` is 286KB. 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.
