# RepoMap Benchmark Results

## Environment
- Machine: Debian 13, RTX 2080 Ti 11GB
- Script: `~/.hermes/scripts/repo-map.py`
- Mode: Fast mode (estimated line counts by extension — no `wc -l`)

## Unspooled Project (~550MB, 85 relevant files)

| Budget | Time | Files | Est. Tokens |
|--------|------|-------|-------------|
| 512 | 0.7s | ~42 | ~870 |
| 1024 | 4.5s | ~85 | ~1670 |
| 2048 | 0.8s | ~83 | ~2245 |

Note: 2048 slower than expected due to find overhead. Kotlin source files included.

## Hermes Agent (~7.2GB, 3,641 files)

| Depth | Result |
|-------|--------|
| 2 | Works |
| 4+ | Times out at 10s |

Workaround: Use `--depth 2` for codebase overview, then target subdirectories.

## Raw Find Comparison

| Method | Time | Output |
|--------|------|--------|
| `find . -name '*.kt'` | 0.0s | 80 files, 1 type |
| `repo-map.py --budget 1024` | 4.5s | 85 files, 15+ types, ranked |
