llm-wiki-lint

llm-wiki-lint is a skill for Claude Code from KerberosClaw/kc_ai_skills. It costs 115 tokens per session (5,207 once invoked), scanned A, original, MIT.

A read-only checker for documentation repositories that follow the Karpathy LLM Wiki layout: source files in `raw/`, topic pages in `wiki/`, and shared files such as `SCHEMA.md`, `index.md`, and `log.md`.

In plain words
What is it for?
Use it to check page metadata, links, source traceability, outdated claims, missing pages, and contradictions between the wiki index and its pages. Fixes require explicit approval.
Why use it?
It finds mismatches and missing links between source material and the published wiki, without changing files during its report phase.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions CLAUDE.md.

Good fit Use it to check page metadata, links, source traceability, outdated claims, missing pages, and contradictions between the wiki index and its pages. Fixes require explicit approval.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kerberosclaw/kc_ai_skills/llm-wiki-lint
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.

Any agent
npx skills add KerberosClaw/kc_ai_skills --skill llm-wiki-lint
Clone the repo
git clone --depth 1 https://github.com/KerberosClaw/kc_ai_skills

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 llm-wiki-lint

README.md
[![agentmods](https://agentmods.dev/badge/skills/kerberosclaw/kc_ai_skills/llm-wiki-lint/github.svg)](https://agentmods.dev/skills/kerberosclaw/kc_ai_skills/llm-wiki-lint)
Your own site
<a href="https://agentmods.dev/skills/kerberosclaw/kc_ai_skills/llm-wiki-lint"><img src="https://agentmods.dev/badge/skills/kerberosclaw/kc_ai_skills/llm-wiki-lint/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 llm-wiki-lint

Your own site · 80×15
<a href="https://agentmods.dev/skills/kerberosclaw/kc_ai_skills/llm-wiki-lint"><img src="https://agentmods.dev/badge/skills/kerberosclaw/kc_ai_skills/llm-wiki-lint.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 115 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,207 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00115 $0.05207
Opus 5 $0.00057 $0.02603
Sonnet 5 $0.00023 $0.01041
Haiku 4.5 $0.00012 $0.00521

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

Security

Grade A, and why

llm-wiki-lint 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 13d 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.

llm-wiki-lint/SKILL.md · 351 lines

How it starts

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

llm-wiki-lint — Karpathy LLM Wiki 三層健檢

You are a documentation auditor for repos following the Karpathy LLM Wiki pattern. Scan the three layers (raw/ + wiki/ + SCHEMA.md / index.md / log.md), surface drift and gaps, report — then fix only with explicit user approval.

CRITICAL — 兩段式契約

  • Phase 1(report)純 read-only。掃描期間任何「順手補一下 frontmatter」「順手更新 index」都是違規。
  • Phase 2(fix)必須等 user 對報告明確點頭(「修」「fix」「都修掉」)才啟動。User 只說「跑 lint」= 只做 Phase 1。

跟 memory-lint 差異

  • memory-lint → Claude memory 目錄(feedback / user profile / project,prefix-based)
  • llm-wiki-lint → LLM Wiki repo(wiki/ 主題頁 + frontmatter + raw source traceability + index 一致性)

Step 1: Detect wiki repo path

依序嘗試,命中第一個就用:

順序 來源 條件
1 $ARGUMENTS 第一個位置參數 使用者明確傳入,最優先
2 環境變數 $WIKI_REPO_DIR export 過
3 當前工作目錄 $PWD SCHEMA.md + wiki/ 子目錄
4 都找不到 → 停止,告訴 user「偵測不到 wiki repo」,不要瞎猜

決定路徑後,先驗證結構:

ls "$WIKI_PATH/SCHEMA.md" "$WIKI_PATH/wiki/" 2>/dev/null
ls "$WIKI_PATH/index.md" 2>/dev/null || echo "WARN: index.md 不存在"
ls "$WIKI_PATH/log.md" 2>/dev/null   || echo "WARN: log.md 不存在"
  • SCHEMA.mdwiki/ 任一缺 → fatal,停止 lint
  • index.md / log.md 缺 → warning,繼續 lint 並在報告建議新建

Step 1b: 載入 repo 自有規約(lint 的 source of truth)

不要硬編碼 Karpathy 預設值 — 以目標 repo 自己的宣告為準

規約 來源 fallback
type allow-list SCHEMA.md §Type 分類(含本地擴充) Karpathy 5 類(overview/entity/concept/comparison/synthesis)+ 報告註明 SCHEMA 未宣告
frontmatter 必備欄位 SCHEMA.md §Frontmatter 欄位 title / type / last_updated / sources
lint 後是否 append log.md SCHEMA.md §Lint 節奏 不 append
額外文件風格規則(如「body 禁 date marker」) repo 的 CLAUDE.md / docs/ 規則檔(如有) 跳過此項檢查

Step 2: Scan & lint(Phase 1 — read-only)

Step 2a: 掃描範圍

find "$WIKI_PATH/wiki" -maxdepth 1 -name '*.md' -type f
find "$WIKI_PATH/wiki" -mindepth 1 -maxdepth 1 -type d   # 子目錄偵測 — 上面那條只看 .md,抓不到目錄

Read the full file on GitHub · 351 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. 13d ago First seen · 351 lines · 115 tokens per session scan A b9fea800bb94

Subscribe to this mod's changes

llm-wiki-lint is a skill published in the GitHub repository KerberosClaw/kc_ai_skills (79 stars, last pushed 4d ago), licensed MIT. It adds 115 tokens to every session and 5,207 once invoked, about $0.0006 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-30.

Related

Other skills, from other repositories

software-in-worten

Übersetzt zwischen Benutzeroberfläche und Text — in beide Richtungen. Aus einer beschriebenen Oberfläche wird ein Skill; aus einem Skill wird eine Oberfläche. Nutzen, wenn eine Anwendung entworfen wird und der Ablauf noch unklar ist, wenn ein bestehendes Werkzeug als Skill verfügbar gemacht werden soll, wenn…

ellmos-ai/skills · 87 tokens

orchestrator

Providerneutrales Protokoll zum Zerlegen komplexer Aufgaben, zum Beauftragen unabhängiger Worker und zur evidenzbasierten Abnahme ihrer Ergebnisse.

ellmos-ai/skills · 38 tokens

lebende-verfassung

Neutrale moralisch-rechtliche Prüfinstanz für Politik und Entscheidungen — der lauffähige Prototyp des Forschungsprojekts "Die Position der Ungeborenen" (Schattenmodus Stufe 1). Nutze diesen Skill, wann immer eine politische Entscheidung, ein Gesetz(entwurf), eine Reform, ein Haushaltsbeschluss oder eine…

ellmos-ai/skills · 0 tokens

dev-cycle

8-phase development cycle: Feature requests, current state, functional planning, frontend, backend planning, backend code, tests, use cases. Iterative framework for systematic software development.

ellmos-ai/skills · 0 tokens

act-techniques

Acceptance & Commitment Therapy (ACT) nach Steven Hayes: Hexaflex-Modell mit den sechs Kernprozessen psychischer Flexibilität.

ellmos-ai/skills · 31 tokens

exposure-guidance

Graduierte Exposition bei Angststörungen: Angsthierarchie, SUDs-Skala, Expositionsplanung und -begleitung. Nur Psychoedukation, keine Durchführung.

ellmos-ai/skills · 42 tokens