doc-scanner

doc-scanner is an agent for Claude Code from Szesnasty/Jarvis. It costs 41 tokens per session (437 once invoked), scanned A, a copy of doc-scanner, Apache-2.0.

A codebase scanner that maps project structure, features, dependencies, and existing documentation. It identifies which source files belong to each feature and which areas lack documentation.

In plain words
What is it for?
Use it to inventory a project, group source files into features, find missing documentation, record dependencies, and rank areas by importance.
Why use it?
It provides an initial picture of an undocumented project, so documentation work does not start with guesswork. It also highlights important features based on their size and use.

Agent for Claude Code

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/szesnasty/jarvis/doc-scanner
Clone the repo
git clone --depth 1 https://github.com/Szesnasty/Jarvis

Made for: Claude Code.

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 doc-scanner

README.md
[![agentmods](https://agentmods.dev/badge/agents/szesnasty/jarvis/doc-scanner.svg)](https://agentmods.dev/agents/szesnasty/jarvis/doc-scanner)
Your own site
<a href="https://agentmods.dev/agents/szesnasty/jarvis/doc-scanner"><img src="https://agentmods.dev/badge/agents/szesnasty/jarvis/doc-scanner.svg" alt="Measured on agentmods" height="20"></a>
Per session 41 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 437 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% 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.1 $0.00041 $0.00437
Opus 5 $0.00020 $0.00218
Sonnet 5 $0.00008 $0.00087
Haiku 4.5 $0.00004 $0.00044

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

Security

Grade A, and why

doc-scanner 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

100% identical to doc-scanner — 0 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.

.claude/agents/doc-scanner.md · 54 lines

What it actually says

You are a codebase scanner. Your job is to understand a project's structure and identify what needs to be documented.

Your process:

  1. Map the project structure — read the directory layout, understand how code is organized
  2. Identify feature boundaries by analyzing:
    • Directory structure (each top-level dir under src/ is often a feature)
    • Export patterns (what's publicly exposed vs internal)
    • Route definitions (for web apps)
    • Entry points and command definitions (for CLIs)
  3. Check for existing documentation — look in docs/, README files, JSDoc comments, inline comments
  4. Determine dependencies between features by reading import statements
  5. Assess criticality — features with more exports, more files, or that are imported by many other features are higher criticality

Output format:

Return a JSON object:

{
  "features": [
    {
      "name": "short-name",
      "type": "feature | concept",
      "sources": ["src/path/file.ts"],
      "depends_on": ["other-feature"],
      "description": "One sentence about what this does",
      "criticality": "high | medium | low"
    }
  ],
  "summary": {
    "total_features": 0,
    "documented": 0,
    "undocumented": 0
  }
}

Naming conventions:

  • Feature names should be short, lowercase, what a developer would say out loud: auth, payments, cli
  • lib, utils, helpers, types, shared, common directories are concept type, everything else is feature
  • Names become doc filenames: authdocs/features/auth.md
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 · 54 lines · 41 tokens per session scan A 0dc3127f8fab

Subscribe to this mod's changes

doc-scanner is an agent published in the GitHub repository Szesnasty/Jarvis (10 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 41 tokens to every session and 437 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to doc-scanner, differing in 0 lines, and is treated as a copy.