add-karpathy-llm-wiki

Set up a persistent LLM-maintained wiki knowledge base for a NanoClaw group.

2|Updated Jan 14, 2026
One-click install
npx skills add https://github.com/RADHA0-max/selfhealbackend --skill add-karpathy-llm-wiki-radha0-max
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: add-karpathy-llm-wiki
Source: https://github.com/RADHA0-max/selfhealbackend/tree/main/nanoclaw/.claude/skills/add-karpathy-llm-wiki
Command: npx skills add https://github.com/RADHA0-max/selfhealbackend --skill add-karpathy-llm-wiki-radha0-max

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Standard RAG workflows re-derive answers from raw documents on every query with no knowledge accumulation. This Skill sets up a persistent, interlinked markdown wiki that an LLM agent incrementally builds and maintains, so knowledge compounds across sources instead of being re-computed each time. ## Core Features & Use Cases - Guided wiki setup: Walks through choosing a NanoClaw group, designing the wiki domain, and creating the wiki/ and sources/ directory structure with index.md and log.md files. - Schema and agent configuration: Generates a container skill (container/skills/wiki/SKILL.md) and a marker-wrapped CLAUDE.md section that turn the agent into a disciplined wiki maintainer with ingest, query, and lint operations. - Source handling and maintenance: Checks whether the agent can handle planned source types (PDFs, images, voice notes, URLs) and optionally schedules periodic lint health checks. - Use Case: A researcher wants a companion wiki while reading papers over several months. Run this Skill to create the wiki structure, then drop in PDFs one at a time; the agent summarizes, cross-references entities, updates the index, and logs every ingest. ## Quick Start Ask the agent to add a Karpathy-style LLM wiki knowledge base to your NanoClaw group and follow the guided setup prompts.

Frequently Asked Questions about add-karpathy-llm-wiki

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I add a persistent wiki knowledge base to NanoClaw?

Invoke the add-karpathy-llm-wiki skill and follow its guided steps: choose a group, discuss the wiki's domain and source types, then let it create the wiki/ and sources/ directories, a container skill, and a CLAUDE.md section. Restart the service afterward to activate it.

What is the Karpathy LLM Wiki pattern?

It is a three-layer knowledge base pattern: raw immutable sources, an LLM-maintained markdown wiki with cross-referenced pages, and a schema file defining conventions. The LLM handles ingest, query, and lint operations so knowledge compounds instead of being re-derived per query.

Can the wiki ingest PDFs, images, or voice notes?

Yes, but the agent needs the matching capability installed. During setup the skill checks planned source types and helps install supporting skills such as add-pdf-reader, add-image-vision, or add-voice-transcription when needed.

Is it safe to re-run the wiki setup skill?

Yes, every step is idempotent. Directories use mkdir -p, existing wiki files are never overwritten, the container skill is preserved unless you opt to update it, and the CLAUDE.md section is replaced in place via marker comments.

How do I remove the Karpathy LLM wiki from NanoClaw?

Follow REMOVE.md: delete container/skills/wiki, remove the marker-wrapped wiki block from the group's CLAUDE.md with the provided perl command, and restart the service. Your wiki/ and sources/ content is preserved unless you delete it manually.