ワンクリックで
verify-counts
Verify numerical claims in documentation are still accurate
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Verify numerical claims in documentation are still accurate
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | verify-counts |
| description | Verify numerical claims in documentation are still accurate |
Verify all count assertions in documentation against actual values.
| 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 |
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
Report each claim with:
If any claim is STALE or FAIL, note which file(s) need updating.
Create a release PR with version bump and changelog
Add support for a new CLI command. Use when implementing a handler or adding to SIMPLE_SAFE.
Ensure comprehensive test coverage for a CLI handler. Use when adding a new command or auditing existing handler coverage.
Debug incorrect Dippy approval or block behavior