Borrowing it
Nothing to install: this file belongs to Grinv/tmdb-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/Grinv/tmdb-mcp/main/.agents/skills/docs-consistency-check/SKILL.mdgit clone --depth 1 https://github.com/Grinv/tmdb-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/grinv/tmdb-mcp/docs-consistency-check)<a href="https://agentmods.dev/skills/grinv/tmdb-mcp/docs-consistency-check"><img src="https://agentmods.dev/badge/skills/grinv/tmdb-mcp/docs-consistency-check.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00056 | $0.00819 |
| Opus 5 | $0.00028 | $0.00409 |
| Sonnet 5 | $0.00011 | $0.00164 |
| Haiku 4.5 | $0.00006 | $0.00082 |
Grade A, and why
docs-consistency-check scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Docs/metadata consistency
Check every one of these, not just a sample:
README.md's tool table matchessrc/tools/*.ts's registrations (names, and any auth/token-requirement column against what each tool actually needs).manifest.json's andserver.json'stoolsarrays list the same tool names as what's actually registered — treat a test failure here as authoritative if one exists. Theirdescriptionfields are deliberately short, independent marketing-style summaries, NOT a copy of the tool's full.describe()/descriptiontext insrc/tools/*.ts— don't "fix" them to match verbatim, that's not a bug. Do re-read them for accuracy if a tool's behavior changed in a way the short summary now misrepresents.- Tool
description/field.describe()text insrc/tools/*.tsitself: does it still match the actualinputSchema/outputSchemaand the client function's real behavior? Cross-check new/edited descriptions against thetool-description-checkskill (Glama's TDQS rubric). CHANGELOG.md's[Unreleased]section (see thechangelog-styleskill for entry style) has one line per real behavior change made in this pass — add missing entries, don't just flag them as missing.- Any
docs/*.mddocumenting upstream API quirks (docs/architecture.md, etc.) still matches the current client code, especially any claim this pass's own fixes just invalidated. AGENTS.md's project-shape/file-tree description still matches the filesystem — including everydocs/*.md/.agents/skills/*/SKILL.mdlink it points to (a doc move/rename, e.g.docs/*.md→.agents/skills/*/SKILL.md, easily strands an old path — grep everydocs//skills/link target and confirm the file exists).docs/clients.mdand any otherdocs/*.mdfor stale phrasing (e.g. describing something as "once published"/"upcoming" that already shipped).PRIVACY.mdandSECURITY.md: re-verify every specific claim against the actual current code, don't just skim for plausibility — which credentials exist and how each is transmitted/redacted, what is and isn't cached (incl. cache key/TTL), the current list of read-only vs. write/mutating tools, and any host-allowlist statement. This class of drift is easy to miss because it reads fine on its own and only breaks against the code: a sibling repo'sSECURITY.md/PRIVACY.mdboth claimed "player-specific data is never cached" after a later feature added exactly that caching, and a separate claim conflated an actually-cached field with a similarly-named never-cached one — neither doc was self-evidently wrong, both required re-reading the client code to catch. Also confirmREADME.mdlinks both (a## Privacy Policy/## Securitysection pointing at them) — adding either file doesn't make it discoverable on its own, and this repo's ownSECURITY.mdshipped with no README link at all until this exact check caught it.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 53 lines · 56 tokens per session scan A ee30577148b0
docs-consistency-check is a skill published in the GitHub repository Grinv/tmdb-mcp (4 stars, last pushed 13d ago), licensed MIT. It adds 56 tokens to every session and 819 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
live-audit
Audit steam-games-mcp — build/test/lint gate, live MCP tool edge-case sweep (input validation, SteamID64/vanity/appid edge cases, key-gating), and source-level code review. Use when asked to test/audit the published or just-fixed steam-games-mcp package, hunt for bugs/edge cases, or repeat "the same kind of testing as…
prompt-check
Live-test every MCP Prompt in src/tools/prompts.ts through the real MCP protocol (not a static read) across every argument combination. Use when a prompt is added or its argument-handling logic changes, or as part of a live-audit pass.
tool-description-check
Self-check a new or edited MCP tool description/field .describe() text before committing — verify every behavioral claim against live testing or source, check for contradictions with sibling tools, and score against Glama's Tool Definition Quality Score (TDQS) rubric. Use whenever a tool description or schema field…
release
Cut a release of steam-games-mcp — draft CHANGELOG entries, check docs/metadata consistency, then bump/tag/push. Use when asked to release, cut a version, or publish a new version of this package.
docs-consistency-check
Check README/manifest.json/server.json/CHANGELOG.md/AGENTS.md and docs/.md for drift against the actual registered tools and source. Use after adding, renaming, or removing a tool, or as part of a live-audit pass.
verify-cli
Run smoke tests against the mpak CLI to verify all commands work correctly before publishing a new release.