llm-wiki

llm-wiki is a skill for Claude Code from HybridAIOne/hybridclaw. It costs 27 tokens per session (1,814 once invoked), scanned A, original, MIT.

A skill for building and maintaining a persistent markdown wiki from source documents. The wiki keeps original files, maintained knowledge pages, an index, and an append-only activity log separate.

In plain words
What is it for?
Use it to ingest raw documents, update existing concept or entity pages, preserve links between topics, and keep the wiki catalog and history current.
Why use it?
It helps knowledge accumulate over time instead of producing a new disconnected summary whenever source material changes.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: mentions AGENTS.md.

Good fit Use it to ingest raw documents, update existing concept or entity pages, preserve links between topics, and keep the wiki catalog and history current.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hybridaione/hybridclaw/llm-wiki
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 HybridAIOne/hybridclaw --skill llm-wiki
Clone the repo
git clone --depth 1 https://github.com/HybridAIOne/hybridclaw

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/hybridaione/hybridclaw/llm-wiki"><img src="https://agentmods.dev/badge/skills/hybridaione/hybridclaw/llm-wiki.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,814 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Agent Snooping · line 53
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
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.00027 $0.01814
Opus 5 $0.00014 $0.00907
Sonnet 5 $0.00005 $0.00363
Haiku 4.5 $0.00003 $0.00181

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

Security

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.

skills/llm-wiki/SKILL.md · 228 lines

How it starts

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

LLM Wiki

Use this skill when the user wants a persistent knowledge base that compounds over time instead of answering from raw documents from scratch on every turn.

Core Model

Treat the wiki as three layers:

  • raw/ is the immutable source collection. Read from it; do not edit or rewrite it during normal maintenance.
  • wiki/ is the maintained knowledge layer. This is where summaries, entity pages, concept pages, and durable analyses live.
  • AGENTS.md, index.md, and log.md define and track the system: AGENTS.md is the schema and workflow contract, index.md is the catalog, and log.md is the append-only timeline.

This is not a one-shot note dump. The goal is to integrate new information into existing pages, preserve cross-references, and keep the wiki internally coherent as the source set grows.

Resolve The Wiki Root

Use this order:

  1. a user-specified wiki root
  2. an already-structured repo or vault containing raw/, wiki/, index.md, and log.md
  3. a confirmed markdown vault or notes repo chosen by the user
  4. the current workspace only if the user explicitly wants the wiki here

Do not assume the current workspace is the wiki root just because it contains Markdown files.

If the target is an Obsidian vault, also follow skills/obsidian/SKILL.md.

Orient Every Session

When the user already has a wiki, always orient yourself before acting:

  1. Read AGENTS.md first to understand the local schema, domain, taxonomy, link style, and workflow rules.
  2. Read index.md to learn what pages exist and how the wiki is organized.
  3. Read the most recent entries in log.md to understand recent ingest, query, lint, archive, and cleanup activity.
  4. For large wikis, search the relevant topic across wiki/**/*.md before creating anything new.

Do this every session before ingest, query, lint, archive, or broad cleanup. Skipping orientation causes duplicate pages, weak cross-references, and schema drift.

Default Layout

Read the full file on GitHub · 228 lines

Files

What ships with it

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

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. 11d ago First seen · 228 lines · 27 tokens per session scan A 2188ef6a23f6

Subscribe to this mod's changes

llm-wiki is a skill published in the GitHub repository HybridAIOne/hybridclaw (132 stars, last pushed today), licensed MIT. It adds 27 tokens to every session and 1,814 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-30.

Related

Other skills, from other repositories

continuum-recipes

Copy-pasteable Continuum patterns — RAG, plan-and-execute, ReAct, multi-tenant agents, FastAPI integration, structured output, prompt-injection scanning, custom containers. Invoke when the user asks "how do I do X with Continuum" and X is a common app pattern rather than a single API question.

shyftlabs/continuum · 73 tokens

ai-portable-setup

Erstellt einen portablen KI-Arbeitsbereich auf einem USB-Stick oder beliebigen Laufwerk. RAG-Pipeline mit lokalen LLM-Modellen (Ollama), Vektordatenbank (ChromaDB) und vorkonfigurierten Prompts.

ellmos-ai/skills · 62 tokens

seo-llm

Use when optimizing content for LLM-powered search engines (ChatGPT, Perplexity, Gemini, Claude, Bing AI, Qwen), implementing RAG optimization, prompt engineering for search visibility, semantic SEO, and ensuring content ranks highly in AI-driven search results. Includes techniques for ChatGPT SEO, Perplexity…

Omar-Obando/qwen-orchestrator · 79 tokens

langchain

Use when building LLM applications with LangChain, implementing chains, agents, tools, memory, prompts, and retrieval systems. Includes best practices for prompt engineering, tool integration, and agent development. Based on LangChain/LangGraph official documentation and agent development best practices.

Omar-Obando/qwen-orchestrator · 57 tokens

ontology-constraint-and-knowledge-injection

A method for deciding how an ontology’s knowledge should reach an AI model: directly in its instructions, through RAG, or through fine-tuning. RAG retrieves relevant information at answer time; fine-tuning changes the model using training examples.

SuperChason/ontology-driven-ai-data-management-skills · 100 tokens

vector-database-engineer

Skill "vector-database-engineer" from frank-luongt/faos-skills-marketplace, covering vector database engineer, do not use this skill when, instructions, capabilities and use this skill when.

frank-luongt/faos-skills-marketplace · 0 tokens