The documentation contained contradictory claims accumulated from
multiple prior sessions. This commit reconciles every numeric claim
against ground truth.
Inconsistencies found and fixed:
Test counts:
- AGENTS.md claimed "31/31 tests" (stale from an early session) in
two places — updated to 235/235
- AGENTS.md claimed "276 tests" (from a different session) — updated
to 235, which is the actual @test count across all .bats files
- docs/CODE-COVERAGE-100%.md claimed "276 total, 235 passing" — all
235 tests pass, so both values are now 235
- Per-file test counts were wrong (e.g. build-iso "89 tests" vs
actual 41) — updated all to match reality
- Category counts updated: unit=186, integration=36, security=11
Line counts:
- AGENTS.md claimed 1,419 total lines, actual is 1,425 (src/ 459 +
hooks/ 966)
- src/build-iso.sh claimed 218 lines, actual is 221
- config/hooks/ claimed 963 lines, actual is 966
Test file count:
- AGENTS.md claimed 16 test files in one place — actual is 20
All numbers now derived from:
find tests/ -name '*.bats' -exec grep -c '@test' {} +
wc -l src/*.sh config/hooks/**/*.sh
Verification:
bash verify.sh => 18/18 checks passing (after this commit)
💘 Generated with Crush
Assisted-by: GLM-4.7 via Crush <crush@charm.land>