ai-coding-minesIndexGitHub

Comment says "measured: N rows" but no code ever computes N

Claude Code and agents

Symptom

A code comment read "measured on <date>: N rows." From that one line grew a load claim ("we re-query N rows every cycle"), and a whole work track was planned on top of it, dry-run counting procedure included.

Measured for real: that re-query never existed. Zero queries anywhere in the codebase aggregate that number. The system looks at a different population, and the actual scan count that day was 0. The track was closed for having no target.

Cause

Fix

Verify

For every number in the claim, answer "which code path computes this value?" If the answer is "a comment," treat it as unsupported and measure again.

Before building a track on a number, find the code that produces it.