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.
npx skills add JeanBaissari/llm-wiki-monorepo --skill skillgit clone --depth 1 https://github.com/JeanBaissari/llm-wiki-monorepoWrote 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.
[](https://agentmods.dev/skills/jeanbaissari/llm-wiki-monorepo/skill)<a href="https://agentmods.dev/skills/jeanbaissari/llm-wiki-monorepo/skill"><img src="https://agentmods.dev/badge/skills/jeanbaissari/llm-wiki-monorepo/skill/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.
<a href="https://agentmods.dev/skills/jeanbaissari/llm-wiki-monorepo/skill"><img src="https://agentmods.dev/badge/skills/jeanbaissari/llm-wiki-monorepo/skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00185 | $0.07158 |
| Opus 5 | $0.00093 | $0.03579 |
| Sonnet 5 | $0.00037 | $0.01432 |
| Haiku 4.5 | $0.00018 | $0.00716 |
Grade A, and why
llm-wiki 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 11d 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.
How it starts
The opening of the file, as written. The whole thing — 566 lines — stays where its author put it; the contents beside it link to each section on GitHub.
LLM Wiki — Karpathy Knowledge Base Pattern
Experimental skill — iterating. Authored by Lewis Liu ([email protected]) · Inspired by Karpathy's llm-wiki Gist
Core idea
Instead of RAG (re-retrieving raw docs on every query), the LLM compiles raw sources into a persistent, cross-linked wiki. Every ingest, query, lint, and audit pass makes the wiki richer. Knowledge compounds — and the human stays in the loop via a structured feedback channel instead of ad-hoc corrections that get lost.
- You own: sourcing raw material, asking good questions, steering direction, filing feedback on anything the AI got wrong.
- LLM owns: all writing, cross-referencing, filing, bookkeeping, and acting on your feedback.
The wiki is a living artifact with ten operations — compile, ingest (single-pass), ingest-2step (two-step chain-of-thought), query, lint, audit, research (deep research), insights (graph insights), ask (grounded QA, v0.6.0), contradictions (epistemic, v0.6.0). Every session starts by reading CLAUDE.md, PURPOSE.md, and wiki/index.md.
Directory layout
<wiki-root>/
├── PURPOSE.md ← Project purpose — why this wiki exists, scope, success criteria
├── CLAUDE.md ← Schema: scope, conventions, current articles, gaps
├── log/ ← Per-day operation log (one file per day)
│ ├── 20260409.md
│ └── 20260410.md
├── audit/ ← Human feedback inbox (one file per comment)
│ ├── 20260409-143022-claude-code-size.md
│ └── resolved/ ← Processed feedback, archived with resolution notes
├── raw/ ← Immutable source documents (LLM reads, never writes)
│ ├── articles/
│ ├── papers/
│ ├── notes/
│ └── refs/ ← Pointer files for large binaries kept outside raw/
├── wiki/ ← LLM-generated knowledge (LLM writes, you read)
│ ├── index.md ← Master catalog — every page, structured by category
│ ├── concepts/ ← Concept/topic pages (split into subfolders when >1200 words)
│ ├── entities/ ← People, tools, papers, organizations
│ ├── summaries/ ← Per-source summary pages
│ ├── comparisons/ ← Side-by-side comparisons of entities, tools, or concepts
│ └── graphs/ ← Graphify knowledge graph outputs (copied from .graphify/)
└── outputs/
└── queries/ ← Query answers (promote durable ones to wiki/)
What ships with it
41 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/article-guide.md 7.7 KB
- references/audit-guide.md 6.6 KB
- references/concurrency.md 6.1 KB
- references/eow-cron-pipeline.md 2.8 KB
- references/examples-and-workflows.md 22 KB
- references/graph-construction-strategies.md 3.1 KB
- references/graphify-pipeline.md 3.2 KB
- references/ingest-guide.md 5.0 KB
- references/log-guide.md 3.4 KB
- references/migration-guide.md 5.6 KB
- references/observability.md 8.6 KB
- references/schema-guide.md 5.7 KB
- references/tooling-tips.md 5.1 KB
- scripts/ask.py 334 B runs code
- scripts/atomic_write.py 303 B runs code
- scripts/audit_review.py 342 B runs code
- scripts/backup.py 333 B runs code
- scripts/benchmark.py 338 B runs code
- scripts/content_hash.py 328 B runs code
- scripts/contradictions.py 495 B runs code
- scripts/deep_research.py 351 B runs code
- scripts/demo.py 334 B runs code
- scripts/discover.py 335 B runs code
- scripts/graph_insights.py 344 B runs code
- scripts/health_check.py 338 B runs code
- scripts/index_wiki.py 338 B runs code
- scripts/ingest.py 337 B runs code
- scripts/link_suggest.py 341 B runs code
- scripts/lint_wiki.py 340 B runs code
- scripts/lock_wiki.py 322 B runs code
- scripts/louvain.py 417 B runs code
- scripts/migrate_log.py 338 B runs code
- scripts/providers/__init__.py 366 B runs code
- scripts/providers/opencode.py 350 B runs code
- scripts/regenerate_fixtures.py 7.9 KB runs code
- scripts/scaffold.py 337 B runs code
- scripts/serve.py 330 B runs code
- scripts/setup.py 353 B runs code
- scripts/sidecar.py 14 KB runs code
- scripts/validate_fixtures.py 16 KB runs code
- scripts/wiki_logging.py 419 B runs code
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.
- 11d ago First seen · 566 lines · 185 tokens per session scan A e30fbfb27069
llm-wiki is a skill published in the GitHub repository JeanBaissari/llm-wiki-monorepo (3 stars, last pushed 7d ago), licensed MIT. It adds 185 tokens to every session and 7,158 once invoked, about $0.0009 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.
Other skills, from other repositories
openai-whisper-api
Transcribe audio via OpenAI Audio Transcriptions API (Whisper).
wiki-export
Export the Obsidian wiki's knowledge graph to structured formats for use in external tools. Use this skill when the user says "export wiki", "export graph", "export to JSON", "export to Gephi", "export to Neo4j", "export to Postgres", "export to SQL", "graphml", "visualize wiki", "knowledge graph export", "export to…
gemini
Gemini CLI for one-shot Q&A, summaries, and generation.
hunt-llm-ai
Hunt LLM/AI feature bugs — prompt injection, indirect injection, exfiltration viatool-use/markdown, ASCII smuggling, agentic AI security (OWASP Agentic Apps 2026, ASI01-ASI10). Patterns: direct injection ('ignore previous instructions'), indirect injection via documents/web pages/email the model reads, ASCII smuggling…
wegent-knowledge
Knowledge base management and search tools for Wegent. Provides capabilities to list, create, update, and search knowledge bases and documents using RAG retrieval. Use this skill when the user wants to manage knowledge bases, documents, or search for information programmatically.
llm-wiki
Build and maintain a persistent, interlinked Obsidian-compatible markdown wiki using Karpathy's LLM Wiki pattern. Extension-backed with auto-generated metadata, guardrails, and 14 custom tools (+3 opt-in agent-trajectory tools).