anilist-mcp-server: Skill for Claude Code

.agents/skills/docs-consistency-check/SKILL.md

docs-consistency-check is a skill for Claude Code, Codex from Grinv/anilist-mcp-server. It costs 56 tokens per session (899 once invoked), scanned A, original, MIT.

A checklist for checking whether project documentation and metadata match the tools registered in the source code. It covers files such as README.md, manifest.json, server.json, CHANGELOG.md, AGENTS.md, and documentation pages.

In plain words
What is it for?
It is for auditing documentation after tools are added, renamed, removed, or changed, and for checking consistency during a live review.
Why use it?
It helps catch outdated tool lists, incorrect permissions, and descriptions that no longer match actual behavior.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md.

This is Grinv/anilist-mcp-server's own configuration. It tells Claude Code and Codex how to work on anilist-mcp-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything anilist-mcp-server configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Grinv/anilist-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Grinv/anilist-mcp-server/main/.agents/skills/docs-consistency-check/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Grinv/anilist-mcp-server

Made for: Claude Code, Codex.

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

agentmods badge for docs-consistency-check

README.md
[![agentmods](https://agentmods.dev/badge/skills/grinv/anilist-mcp-server/docs-consistency-check/github.svg)](https://agentmods.dev/skills/grinv/anilist-mcp-server/docs-consistency-check)
Your own site
<a href="https://agentmods.dev/skills/grinv/anilist-mcp-server/docs-consistency-check"><img src="https://agentmods.dev/badge/skills/grinv/anilist-mcp-server/docs-consistency-check/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for docs-consistency-check

Your own site · 80×15
<a href="https://agentmods.dev/skills/grinv/anilist-mcp-server/docs-consistency-check"><img src="https://agentmods.dev/badge/skills/grinv/anilist-mcp-server/docs-consistency-check.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 899 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00056 $0.00899
Opus 5 $0.00028 $0.00449
Sonnet 5 $0.00011 $0.00180
Haiku 4.5 $0.00006 $0.00090

Measured 8d ago against content hash 20cf2c09b55a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

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 8d 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.

.agents/skills/docs-consistency-check/SKILL.md · 56 lines

What it actually says

Docs/metadata consistency

Check every one of these, not just a sample:

  • README.md's tool table matches src/server.ts's registrations (names, and the permission/auth column against each tool's actual requireAuth() usage).
  • manifest.json's and server.json's tools arrays list the same tool names as what's actually registered (npm test already asserts this via e2e.test.ts — treat a failure there as authoritative). Their description fields are deliberately short, independent marketing-style summaries, NOT a copy of the tool's full .describe()/description text in src/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 in src/tools/*.ts itself: does it still match the actual inputSchema/outputSchema and the client function's real behavior? Cross-check new/edited descriptions against the tool-description-check skill (Glama's TDQS rubric) per AGENTS.md.
  • CHANGELOG.md's [Unreleased] section (see the changelog-style skill for entry style) has one line per real behavior change made in this pass — add missing entries, don't just flag them as missing.
  • docs/api-references.md's "confirmed live" claims still match the current client code, especially any claim this pass's own fixes just invalidated.
  • AGENTS.md's src/ tree (and this .agents/skills/ entry) still matches the filesystem, and its convention prose doesn't name an API/pattern this pass just renamed everywhere in code (confirmed case: a .passthrough()/ z.unknown() mention survived a rename to .loose()/z.json() — grep the old name in AGENTS.md whenever a rename touches ≥3 files).
  • docs/clients.md and any other docs/*.md for stale phrasing (e.g. describing something as "once published"/"upcoming" that already shipped).
  • PRIVACY.md and SECURITY.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 (redact() in src/lib/errors.ts), what is and isn't cached (cache key/TTL/what clears it, in src/lib/cache.ts and clients/anilist.ts), the current list of read-only vs. mutating tools (grep registerTool( in src/tools/*.ts), and the env-configurable-endpoint/host-allowlist statement in config.ts. This class of drift is easy to miss because it reads fine on its own and only breaks against the code: a sibling repo's SECURITY.md/PRIVACY.md both 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. Given this repo's especially broad write/social tool surface, the mutating-tool enumeration (currently 13 — see SECURITY.md's "The mutating tool surface") is the highest-value thing to re-check here specifically; it's exactly the kind of count that silently goes stale the next time a tool is added, renamed, or removed.
Changes

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.

  1. 8d ago First seen · 56 lines · 56 tokens per session scan A 20cf2c09b55a

Subscribe to this mod's changes

docs-consistency-check is a skill published in the GitHub repository Grinv/anilist-mcp-server (1 stars, last pushed 15d ago), licensed MIT. It adds 56 tokens to every session and 899 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.

Related

Other skills, from other repositories

design-mcp-server

Design the tool surface, resources, and service layer for a new MCP server. Use when starting a new server, planning a major feature expansion, or when the user describes a domain/API they want to expose via MCP. Produces a design doc at docs/design.md that drives implementation.

cyanheads/anime-mcp-server · 62 tokens

add-tool

Scaffold a new MCP tool definition. Use when the user asks to add a tool, create a new tool, or implement a new capability for the server.

cyanheads/anime-mcp-server · 35 tokens

api-context

Canonical reference for the unified Context object passed to every tool and resource handler in @cyanheads/mcp-ts-core. Covers the full interface, its RequestContext base, all sub-APIs (ctx.log, ctx.state, ctx.requestInput, ctx.inputs, ctx.enrich, ctx.content), and when to use each.

cyanheads/anime-mcp-server · 79 tokens

api-linter

MCP definition linter rules reference. Use when bun run lint:mcp or bun run devcheck reports a lint error or warning (format-parity, schema-is-object, name-format, server-json-, etc.) and you need to understand the rule, its severity, and how to fix it. Every rule ID the linter emits has an entry in this doc.

cyanheads/anime-mcp-server · 86 tokens

api-canvas

DataCanvas primitive reference — a Tier 3 SQL/analytical workspace for tabular MCP servers, backed by DuckDB. Use when registering tables from upstream APIs, running ad-hoc SQL across them, and exporting results. Covers the acquire → register → query → export flow, per-table TTL, the token-sharing pattern for…

cyanheads/anime-mcp-server · 85 tokens

api-errors

McpError constructor, JsonRpcErrorCode reference, and error handling patterns for @cyanheads/mcp-ts-core. Use when looking up error codes, understanding where errors should be thrown vs. caught, or using ErrorHandler.tryCatch in services.

cyanheads/anime-mcp-server · 54 tokens