# AGENTS.md

The lazier way to manage everything docker

## Setup

```
go mod download
```

## Commands

```
go test ./...   # run the test suite
```

## Layout

- `vendor/`  1102 source files
- `pkg/`     84 source files
- `scripts/` 5 source files
- `test/`    1 source file

## Conventions

- Tests live alongside the code they cover, following `pkg/commands/container_stats_test.go`.
- 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

- `vendor/golang.org/x/sys/windows/zerrors_windows.go` is 923KB. 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.
