indexer

indexer is an agent for Claude Code from Sixz-AI/repo-knowledge. It costs 67 tokens per session (459 once invoked), scanned A, original, MIT.

A code-repository scanner that creates Markdown documentation for functions and classes. It indexes supported source files while skipping tests, generated files, configuration, and common dependency or build folders.

In plain words
What is it for?
Use it during an initial repository index or an update after files change. It creates documentation with source paths, explanations, code, parameters, return values, examples, and notes.
Why use it?
It turns an unfamiliar codebase into smaller, searchable documents instead of making you read every source file to understand its structure.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the repo-knowledge plugin — 9 skills, 2 agents, 1 hook shipped together

Good fit Use it during an initial repository index or an update after files change. It creates documentation with source paths, explanations, code, parameters, return values, examples, and notes.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/sixz-ai/repo-knowledge/indexer
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.

Clone the repo
git clone --depth 1 https://github.com/Sixz-AI/repo-knowledge

Made for: Claude Code.

Or install repo-knowledge, the plugin that ships this one along with the rest of its 9 skills, 2 agents, 1 hook.

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 indexer

README.md
[![agentmods](https://agentmods.dev/badge/agents/sixz-ai/repo-knowledge/indexer.svg)](https://agentmods.dev/agents/sixz-ai/repo-knowledge/indexer)
Your own site
<a href="https://agentmods.dev/agents/sixz-ai/repo-knowledge/indexer"><img src="https://agentmods.dev/badge/agents/sixz-ai/repo-knowledge/indexer.svg" alt="Measured on agentmods" height="20"></a>
Per session 67 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 459 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.00067 $0.00459
Opus 5 $0.00034 $0.00230
Sonnet 5 $0.00013 $0.00092
Haiku 4.5 $0.00007 $0.00046

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

Security

Grade A, and why

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

agents/indexer.md · 66 lines

What it actually says

You are a Codebase Indexer Agent, responsible for scanning a codebase and generating documentation for every function and class.

Your Capabilities

  • Read code files using Read tool
  • Find files using Glob tool
  • Search code using Grep tool

Document Granularity Rules

  • One document per function
  • One document per class (if class < 200 lines)
  • If class > 200 lines, split by method
  • If function > 100 lines, split by logical sections
  • Skip: test files, config files, generated code, type definitions only

File Types to Scan

*.ts, *.tsx, *.js, *.jsx, *.py, *.go, *.java, *.rs, *.c, *.cpp, *.h, *.hpp, *.rb, *.php, *.swift, *.kt

Directories to Skip

node_modules, .git, dist, build, vendor, pycache, .next, .nuxt, target, out, coverage

Document Format

---
cached: {YYYY-MM-DD}
source: {relative/path/to/file.ext}
---

## [Function/Class Name]
**File:** [relative/path/to/file.ext]

### What It Does
[English explanation](中文说明)

### Code
```[language]
[actual code]

Parameters

  • param_name (type): Description

Returns

  • (type): Description

Usage Example

[practical working example]

Notes

  • Important caveats or edge cases
  • Related functions

## Workflow
1. Glob all code files (skip excluded directories)
2. For each file: Read → Extract functions/classes → Generate doc → Save
3. Organize docs by source directory structure
4. After all docs generated, build _index.md with one-line summaries
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. 6d ago First seen · 66 lines · 67 tokens per session scan A ec67f723f3fb

Subscribe to this mod's changes

indexer is an agent published in the GitHub repository Sixz-AI/repo-knowledge (2 stars, last pushed 4mo ago), licensed MIT. It adds 67 tokens to every session and 459 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 agents, from other repositories

bulwark-fix-validator

Validates fixes against debug report by executing tiered test plan and assessing confidence. Reads validation plan from IssueAnalyzer output. Use proactively after a fix has been implemented and a debug report exists, to validate the fix and assess deployment confidence.

QBall-Inc/the-bulwark · 54 tokens

plan-creation-qa-critic

QA / Critic for the plan-creation pipeline. Adversarially challenges assumptions, identifies gaps, stress-tests estimates, and issues a final APPROVE / MODIFY / REJECT verdict. Use when you need a structured adversarial review of any implementation plan, proposal, or design document.

QBall-Inc/the-bulwark · 66 tokens

bulwark-implementer

Code-writing agent that implements fixes and features following Bulwark standards. Quality enforced by direct implementer-quality.sh invocation after each Write/Edit. Use proactively after a debug report (fix mode) or design document (feature mode) is ready for implementation.

QBall-Inc/the-bulwark · 57 tokens

plan-creation-architect

Technical architect for implementation plan creation. Analyzes system design, component decomposition, integration points, design patterns, and technical trade-offs. Reads Product Owner output and optional research synthesis. Use when architectural analysis is needed for a new feature, system, or implementation plan.

QBall-Inc/the-bulwark · 59 tokens

plan-creation-eng-lead

Engineering and Delivery Lead for implementation planning. Produces work breakdown structures, effort estimates, dependency graphs, milestones, parallel opportunities, and risk registers. Use when you need structured delivery planning for any implementation topic.

QBall-Inc/the-bulwark · 48 tokens

plan-creation-po

Product Owner for the plan-creation pipeline. Explores the codebase autonomously and produces a structured requirements analysis with scope, acceptance criteria, and user value. Use when the plan-creation orchestrator needs codebase context and requirements before the Architect and Eng Lead stages.

QBall-Inc/the-bulwark · 59 tokens