# AGENTS.md

Bash is all you need -  A nano claude code–like 「agent harness」, built from 0 to 1

## Setup

```
pip install -r requirements.txt
```

## Commands

```
# TODO: nothing declares a build or test command, so an agent has to guess.
# This is the single most valuable section of this file. Fill it in.
```

## Layout

- `web/`            58 source files
- `tests/`          19 source files
- `agents/`         14 source files
- `skills/`         4 source files
- `s05_todo_write/` 2 source files
- `s01_agent_loop/` 1 source file

## Conventions

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

- `s15_integrated_harness/code.py` is 124KB. It will not fit comfortably in context, so read it in parts.
- Copy `.env.example` before running anything that needs configuration.
- No lockfile is committed, so an install here may not match what CI produced.

---

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.
