learnship-doc-verifier

learnship-doc-verifier is an agent for coding agents from FavioVazquez/learnship. It costs 36 tokens per session (542 once invoked), scanned A, a copy of doc-verifier, MIT.

A worker agent that checks whether documentation matches the current code. It looks for outdated claims, missing sections, incorrect references, and examples that no longer work.

In plain words
What is it for?
It is for reviewing documentation, public APIs, configuration, behavior descriptions, and code examples against the codebase.
Why use it?
It helps find documentation drift, where the code has changed but the written instructions have not.

Agent

Part of the learnship plugin — 24 skills, 34 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/faviovazquez/learnship/learnship-doc-verifier
Clone the repo
git clone --depth 1 https://github.com/FavioVazquez/learnship

Or install learnship, the plugin that ships this one along with the rest of its 24 skills, 34 agents.

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 learnship-doc-verifier

README.md
[![agentmods](https://agentmods.dev/badge/agents/faviovazquez/learnship/learnship-doc-verifier.svg)](https://agentmods.dev/agents/faviovazquez/learnship/learnship-doc-verifier)
Your own site
<a href="https://agentmods.dev/agents/faviovazquez/learnship/learnship-doc-verifier"><img src="https://agentmods.dev/badge/agents/faviovazquez/learnship/learnship-doc-verifier.svg" alt="Measured on agentmods" height="20"></a>
Per session 36 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 542 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 86% copy Near-identical to another mod 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 $0.00036 $0.00542
Opus 5 $0.00018 $0.00271
Sonnet 5 $0.00007 $0.00108
Haiku 4.5 $0.00004 $0.00054

Measured 5d ago against content hash 0b8f0e2e448f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

learnship-doc-verifier 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 5d 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.

Origin

This is a copy

86% identical to doc-verifier — 12 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

agents/learnship-doc-verifier.md · 80 lines

How it starts

The opening of the file, as written. The whole thing — 80 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Spawned by /docs-update and /validate-phase when documentation verification is needed. You are NOT writing code. You are checking that documentation accurately reflects what was built.

Core Responsibilities

  • Compare documentation claims against actual code
  • Identify stale, missing, or incorrect documentation
  • Flag undocumented public APIs, components, or behaviors
  • Verify code examples in docs actually work
  • Produce a verification report with actionable findings

Verification Strategy

1. Inventory — What docs exist?

Read all documentation files (README.md, docs/, API references, inline JSDoc/docstrings).

2. Cross-reference — Do docs match code?

For each documented feature, function, or API:

  • Does the code still exist at the documented location?
  • Do documented parameters match actual signatures?
  • Do documented behaviors match actual implementation?
  • Are documented versions/dependencies current?

3. Coverage — What's missing?

  • Public APIs without documentation
  • New features added after docs were last updated
  • Configuration options not documented
  • Error states and edge cases not covered

4. Accuracy — Are examples correct?

  • Do code examples use current API signatures?
  • Do configuration examples use valid options?
  • Do shell commands reference correct paths and tools?

Confidence Levels

Level Meaning
VERIFIED Checked against live code — docs match
STALE Code has changed since docs were written
MISSING Feature exists in code but not in docs
INCORRECT Docs describe behavior that doesn't match code

Output Format

Write findings to a verification report:

# Documentation Verification Report

**Verified:** [date]
**Scope:** [what was checked]

## Summary
- [N] docs verified correct
- [N] stale docs found
- [N] missing docs found
- [N] incorrect docs found

## Findings

### [STALE] [file path]
**Issue:** [what's wrong]
**Current code:** [what the code actually does]
**Fix:** [specific correction needed]

### [MISSING] [feature/API name]
**Location:** [code path]
**Needs:** [what documentation should be added]

Read the full file on GitHub · 80 lines

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. 5d ago First seen · 80 lines · 36 tokens per session scan A 0b8f0e2e448f

Subscribe to this mod's changes

learnship-doc-verifier is an agent published in the GitHub repository FavioVazquez/learnship (59 stars, last pushed 3mo ago), licensed MIT. It adds 36 tokens to every session and 542 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 86% identical to doc-verifier, differing in 12 lines, and is treated as a copy.

Related

Other agents, from other repositories

debugger

Debugging specialist for errors and test failures. Use when encountering build errors, runtime exceptions, test failures, or unexpected behavior. Invoke with /debugger to investigate issues.

madebyaris/advance-minimax-m3-cursor-rules · 37 tokens

verifier

Validates completed work. Use after tasks are marked done to confirm implementations are functional. Invoke with /verifier when you need to verify code actually works.

madebyaris/advance-minimax-m3-cursor-rules · 34 tokens

team-reviewer

Multi-dimensional code reviewer that operates on one assigned review dimension (security, performance, architecture, testing, or accessibility) with structured finding format. Use when performing parallel code reviews across multiple quality dimensions.

wshobson/agents · 43 tokens

agent-orchestration-context-manager

Elite AI context engineering specialist mastering dynamic context management, vector databases, knowledge graphs, and intelligent memory systems. Orchestrates context across multi-agent workflows, enterprise AI systems, and long-running projects with 2024/2025 best practices. Use PROACTIVELY for complex AI…

wshobson/agents · 66 tokens

code-documentation-code-reviewer

Elite code review expert specializing in modern AI-powered code analysis, security vulnerabilities, performance optimization, and production reliability. Masters static analysis tools, security scanning, and configuration review with 2024/2025 best practices. Use PROACTIVELY for code quality assurance.

wshobson/agents · 60 tokens

content-marketer

Elite content marketing strategist specializing in AI-powered content creation, omnichannel distribution, SEO optimization, and data-driven performance marketing. Masters modern content tools, social media automation, and conversion optimization with 2024/2025 best practices. Use PROACTIVELY for comprehensive content…

wshobson/agents · 60 tokens