Skip to main content

What Coverage Indicators Are

Every section in every topic article carries a coverage tag that records how many source files contributed to that section and how well-synthesized it is. This lets Claude — and you — make a fast, informed decision: read the wiki section and move on, or go deeper into raw files.

The Three Levels

High

5 or more sourcesThe section is well-synthesized and recently compiled. Trust it directly and skip the raw files.

Medium

2–4 sourcesGood overview, but may miss detail on granular questions. Check raw sources if you need specifics.

Low

0–1 sourcesSparse data. Read the raw sources listed in that section directly rather than relying on the wiki.

What Coverage Tags Look Like

Coverage tags appear inline in each section heading:
## Summary [coverage: high -- 15 sources]
...trust this, it's well-sourced...

## Experiments & Results [coverage: medium -- 3 sources]
...decent overview, check raw files for details...

## Gotchas [coverage: low -- 1 source]
...read the raw gotchas.md directly...
The tag format is always: [coverage: {level} -- {N} sources]
Coverage varies by section within the same article. A topic might have a high-coverage Summary (synthesized from 15 meetings) and a low-coverage Gotchas section (only one source mentions it). Read accordingly.

How Your Agent Should Use Coverage

The most effective pattern is to have Claude apply coverage-aware reading automatically. You do this by adding a knowledge base block to your AGENTS.md or CLAUDE.md:
## Knowledge Base

A compiled knowledge wiki is available at `{your output path}/`.

**Session startup:** Read `wiki/INDEX.md` for a topic overview, then read
specific topic articles relevant to your current task.

**Using coverage indicators:** Each section has a coverage tag:
- `[coverage: high]` -- trust this section, skip the raw files.
- `[coverage: medium]` -- good overview, check raw sources for granular questions.
- `[coverage: low]` -- read the raw sources listed in that section directly.

**When you need depth:** Check the article's Sources section for links to
raw files. Only read raw sources for medium/low coverage sections or when
you need very specific detail.

**Never modify wiki files directly** -- they are regenerated by `/wiki-compile`.
Once this is in your AGENTS.md, Claude uses coverage indicators automatically every session — no special commands needed.
The Sources section at the bottom of every article lists backlinks to every raw file that contributed. For medium and low coverage sections, these links tell Claude exactly which files to read — no broad scanning required.

The Practical Tradeoff

Coverage indicators give you the speed of a compiled wiki without sacrificing accuracy on sections that need depth.
CoverageAgent behaviorToken cost
highReads wiki section, continuesMinimal
mediumReads wiki section, may check 1-2 raw files for specificsLow
lowSkips wiki section, reads linked raw files directlyNormal
In practice, most heavily-used topics accumulate high coverage quickly. The [coverage: low] tag is most useful for newly discovered topics or sections that haven’t had many sources classified into them yet.
Run /wiki-lint to get a report of all low-coverage sections across the wiki. This shows you where the compiled knowledge is thin and which raw files you might want to add more detail from.