repomap

CLAUDE.md — repomap

Project

Repo-map tool for AI coding agents. Third of the trilogy: zcat (read) → rustygrep (search) → repomap (orient). Answers “what’s in this repo” in ≤budget tokens.

Commands

go build -o repomap.exe .      # build (Windows)
go test ./...                  # run tests
go vet ./...                   # static check
./repomap.exe [dir]            # map current/repo dir
./repomap.exe --json           # machine-readable

Layout

cmd/repomap/main.go     CLI + render
internal/mapx/          all logic, stdlib only
docs/                   PRD, design, impl, this file

Conventions