Skip to content
Hooks
Skill

/verify-counts

Verify numerical claims in documentation are still accurate

From plugin
dippy
2425 skills
Install
$ npx -y skills add ldayton/Dippy --skill verify-counts --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/verify-counts

Context preview

The summary Claude sees to decide when to auto-load this skill.

Verify numerical claims in documentation are still accurate

SKILL.md

verify-counts.SKILL.md
name: verify-counts
description: Verify numerical claims in documentation are still accurate

Verify all count assertions in documentation against actual values.

Claims to Verify

| Location | Claim | Verification | |----------|-------|--------------| | `README.md:14` | 14,000+ tests | Dippy + Parable combined | | `../Dippy.wiki/Reference/Security-Model.md:79` | Over 200 read-only commands | SIMPLE_SAFE count | | `../Dippy.wiki/Reference/Security-Model.md:94` | Over 80 tools | CLI handler count | | `../Dippy.wiki/Reference/Handler-Model.md:210` | 80+ handlers | CLI handler count |

Verification Commands

**Dippy tests:**

uv run pytest --collect-only -q 2>/dev/null | tail -1

**Parable tests:** Check table in `/Users/lily/source/Parable/tests/README.md`

**SIMPLE_SAFE count:**

uv run python -c "from src.dippy.core.allowlists import SIMPLE_SAFE; print(len(SIMPLE_SAFE))"

**CLI handlers:**

ls -1 src/dippy/cli/*.py | grep -v __init__ | wc -l

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., "50+" when actual is 77)
  • **FAIL**: Claim is false

If any claim is STALE or FAIL, note which file(s) need updating.

Ships withdippy

🐤 Less permission fatigue, more momentum. Dippy knows what’s safe to run and keeps Claude on track when plans change.

Get the whole plugin
Stats
241
Stars
22
Forks
Maintained
Maintenance
Python
Language
MIT
License
2mo ago
Last commit
7mo ago
Created

Repo: ldayton/Dippy