wiki-status

wiki-status is a command for Claude Code from vijay-athithyaa-GV/llm-wiki-init. It costs 19 tokens per session (647 once invoked), scanned A, original, MIT.

A read-only health report for an existing LLM Wiki, a folder of linked Markdown pages maintained for language-model use.

In plain words
What is it for?
Use it to count pages by category, review the five latest log entries, and find orphan pages without creating or changing files.
Why use it?
It quickly shows whether the wiki has the expected structure, how much content it contains, what changed recently, and which pages are disconnected.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md; positional $N argument.

Part of the llm-wiki-init plugin — 2 commands shipped together

Good fit Use it to count pages by category, review the five latest log entries, and find orphan pages without creating or changing files.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/vijay-athithyaa-gv/llm-wiki-init/wiki-status
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/vijay-athithyaa-GV/llm-wiki-init

Made for: Claude Code.

Or install llm-wiki-init, the plugin that ships this one along with the rest of its 2 commands.

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 wiki-status

README.md
[![agentmods](https://agentmods.dev/badge/commands/vijay-athithyaa-gv/llm-wiki-init/wiki-status/github.svg)](https://agentmods.dev/commands/vijay-athithyaa-gv/llm-wiki-init/wiki-status)
Your own site
<a href="https://agentmods.dev/commands/vijay-athithyaa-gv/llm-wiki-init/wiki-status"><img src="https://agentmods.dev/badge/commands/vijay-athithyaa-gv/llm-wiki-init/wiki-status/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 wiki-status

Your own site · 80×15
<a href="https://agentmods.dev/commands/vijay-athithyaa-gv/llm-wiki-init/wiki-status"><img src="https://agentmods.dev/badge/commands/vijay-athithyaa-gv/llm-wiki-init/wiki-status.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 647 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.00019 $0.00647
Opus 5 $0.00010 $0.00324
Sonnet 5 $0.00004 $0.00129
Haiku 4.5 $0.00002 $0.00065

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

Security

Grade A, and why

wiki-status 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 12d 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.

commands/wiki-status.md · 87 lines

How it starts

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

/wiki-status

Report on an existing LLM Wiki. This command is strictly read-only — it does not create, edit, move, or delete a single file. If you find problems, report them; do not fix them.

Step 0 — Locate the wiki

If $1 was given, treat it as the wiki folder. Otherwise use the current directory.

Confirm the folder is a wiki by checking for both CLAUDE.md and wiki/index.md.

If either is missing, stop and tell the user:

That doesn't look like an LLM Wiki — I couldn't find CLAUDE.md and wiki/index.md.

Run this from inside a wiki folder, pass the folder as an argument, or create a new wiki with /wiki-init <folder-name> "<topic>".

Step 1 — Count pages per category

Count the .md files in each of:

  • wiki/concepts/
  • wiki/entities/
  • wiki/sources/

Exclude .gitkeep and any non-markdown files. Also note the total.

Step 2 — Read recent activity

Read wiki/log.md and pull the last 5 entries (the most recent ones — the log appends newest at the bottom). If there are fewer than 5, show all of them. If wiki/log.md is missing, say so and continue.

Step 3 — Find orphan pages

An orphan is a page under wiki/ that nothing links to from wiki/index.md.

  1. Read wiki/index.md.
  2. List every .md file under wiki/concepts/, wiki/entities/, and wiki/sources/.
  3. A page counts as linked if index.md references it by filename, by relative path, or by [[wikilink]] matching its name or title.
  4. Everything else is an orphan.

Do not count index.md, log.md, or overview.md — those are structural files, not catalog entries.

Step 4 — Report

Print a compact report:

Wiki: <folder>
Topic: <topic from CLAUDE.md>

Pages
  concepts   <n>
  entities   <n>
  sources    <n>
  total      <n>

Recent activity (last 5 log entries)
  <entry>
  <entry>
  ...

Orphan pages (in wiki/, not linked from index.md)
  <path>
  ...

If there are no orphans, print Orphan pages: none instead of an empty list.

Read the full file on GitHub · 87 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. 12d ago First seen · 87 lines · 19 tokens per session scan A ddf4c1f7d656

Subscribe to this mod's changes

wiki-status is a command published in the GitHub repository vijay-athithyaa-GV/llm-wiki-init (2 stars, last pushed 1mo ago), licensed MIT. It adds 19 tokens to every session and 647 once invoked, about $0.0001 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.