AgentSkillsCN

verify-counts

核实文档中的数字性声明是否依然准确。

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

Verify all count assertions in documentation against actual values.

Claims to Verify

LocationClaimVerification
README.md:1414,000+ testsDippy + Parable combined
../Dippy.wiki/Reference/Security-Model.md:79Over 200 read-only commandsSIMPLE_SAFE count
../Dippy.wiki/Reference/Security-Model.md:94Over 45 toolsCLI handler count
../Dippy.wiki/Reference/Handler-Model.md:21050+ handlersCLI handler count

Verification Commands

Dippy tests:

bash
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:

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

CLI handlers:

bash
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.