Agent skill
verify-counts
Verify numerical claims in documentation are still accurate
Install this agent skill to your Project
npx add-skill https://github.com/ldayton/Parable/tree/main/.claude/skills/verify-counts
SKILL.md
Verify all count assertions in documentation against actual values.
Claims to Verify
| Location | Claim | Verification |
|---|---|---|
README.md:17 |
11,000-line parser | Line count of parser source |
README.md:103 |
1,800+ hand-written tests | tests/parable/ test count |
Verification Commands
Parser line count:
wc -l src/parable.py
Hand-written test count:
rg -c '^=== ' tests/parable/ | awk -F: '{sum += $2} END {print sum}'
Output
Report each claim with:
- Documented value
- Actual value
- Status (PASS/FAIL/STALE)
Status Criteria
- PASS: Actual value is within ~10% of documented value
- STALE: Claim is technically true but significantly outdated (e.g., "1,500" when actual is 1,849)
- FAIL: Claim is false
If any claim is STALE or FAIL, note which file(s) need updating.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
release
Create a release PR with version bump and changelog
release
Create a release PR with version bump and changelog
debug
Debug incorrect Dippy approval or block behavior
add-command
Add support for a new CLI command. Use when implementing a handler or adding to SIMPLE_SAFE.
verify-counts
Verify numerical claims in documentation are still accurate
check-coverage
Ensure comprehensive test coverage for a CLI handler. Use when adding a new command or auditing existing handler coverage.
Didn't find tool you were looking for?