EveryDev.ai
Subscribe
Home
Tools

3,484+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. karpathy-llm-wiki
    karpathy-llm-wiki icon

    karpathy-llm-wiki

    Knowledge Management

    A reusable Agent Skills-compatible skill for building Karpathy-style LLM wikis with Claude Code, Cursor, Codex, and other coding agents.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under the MIT license. Free to use, modify, and distribute.

    Engagement

    Available On

    CLI
    API

    Resources

    WebsiteGitHubllms.txt

    Topics

    Knowledge ManagementAgent Skill RegistriesRetrieval-Augmented Generation

    Alternatives

    claude-obsidianMaker SkillsAtomic
    Developer
    Astro-HanAstro-Han (Yuhan Lei) builds open-source tooling for AI-assi…

    Listed Aug 2026

    About karpathy-llm-wiki

    karpathy-llm-wiki packages Andrej Karpathy's LLM Wiki idea into a single installable Agent Skills skill, letting coding agents like Claude Code, Cursor, and Codex maintain a structured knowledge base from raw sources. Released under the MIT license by Yuhan Lei (GitHub: Astro-Han), the project is an unofficial community implementation of the workflow described in Karpathy's public gist. The repository reports 1,788 stars and 209 forks as of mid-2026.

    What It Is

    karpathy-llm-wiki is an open-source skill that turns a coding agent into a knowledge-base maintainer. Instead of re-searching raw documents on every question (as in RAG), the agent compiles ingested sources into durable, curated markdown wiki pages that compound over time. The skill defines three core operations — Ingest, Query, and Lint — and works with any tool that supports the agentskills.io open standard.

    How the Workflow Works

    The project follows a clear directory convention:

    • raw/ — immutable source material (web pages, papers, PDFs, markdown, pasted text)
    • wiki/ — compiled knowledge pages maintained by the LLM, organized by topic
    • wiki/index.md — global table of contents
    • wiki/log.md — append-only operation log

    When a new source arrives, the agent stores it in raw/, then creates or updates the relevant wiki articles, strengthens cross-references, and records contradictions. Queries search the wiki and return grounded answers with citations linking back to markdown pages. The lint operation checks index integrity, broken links, and stale cross-references, applying auto-fixes where possible.

    LLM Wiki vs RAG

    The README draws a direct contrast with retrieval-augmented generation:

    ApproachKnowledge lives inSynthesis happens
    RAGRaw chunks and embeddingsAt query time
    LLM WikiCurated markdown pagesDuring ingest and maintenance

    The wiki model is optimized for compounding knowledge — summaries and cross-links improve with each new source rather than being re-derived on every query. The README notes that at 50K–100K tokens of curated wiki, grep and file reads are more reliable than vector or graph search, and recommends adding search tooling only when recall measurably degrades.

    Tool Compatibility and Installation

    The skill installs via a single npx add-skill Astro-Han/karpathy-llm-wiki command and is compatible with Claude Code, Cursor, Codex CLI, and OpenCode. For tools without native Agent Skills support, the SKILL.md, references/, and scripts/ directories can be copied manually into the tool's skill directory.

    Design Boundaries

    The README documents deliberate non-features informed by three months of production logs and a survey of the ecosystem:

    • No source-hash freshness tracking (raw/ is immutable)
    • No persisted line-number citations (whole-file grep catches observed fidelity errors)
    • No numeric confidence scores (described as false precision without calibration)
    • No automatic hooks or scheduled runs (those belong to the agent harness)
    • No MCP servers, UIs, or output subsystems (outside the scope of a tool-agnostic skill)
    • No vector or graph search at current wiki scale

    Current Status

    The repository was created in April 2026 and last pushed in July 2026. The README reports a production knowledge base maintained daily since April 2026 with 94 wiki articles across 13 topic directories and 99 ingested sources. The project tracks Google's Open Knowledge Format draft for potential future compatibility.

    karpathy-llm-wiki - 1

    Community Discussions

    Be the first to start a conversation about karpathy-llm-wiki

    Share your experience with karpathy-llm-wiki, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under the MIT license. Free to use, modify, and distribute.

    • Ingest, Query, and Lint operations
    • Compatible with Claude Code, Cursor, Codex CLI, OpenCode
    • Single-command install via npx add-skill
    • Full source code access under MIT license
    • Examples, templates, and design spec included

    Capabilities

    Key Features

    • Ingest sources (URLs, files, PDFs, pasted text) into immutable raw/ directory
    • Compile and update curated markdown wiki pages from ingested sources
    • Query wiki with grounded answers and citations linking to markdown pages
    • Lint wiki for broken links, missing index entries, and stale cross-references with auto-fixes
    • Append-only operation log for audit trail
    • Global table of contents (index.md) maintained automatically
    • Cross-reference and contradiction tracking across wiki pages
    • Compatible with Claude Code, Cursor, Codex CLI, and OpenCode via agentskills.io standard
    • Single-command install via npx add-skill
    • MIT licensed and fully open source

    Integrations

    Claude Code
    Cursor
    Codex CLI
    OpenCode
    agentskills.io
    API Available

    Ratings & Reviews

    No ratings yet

    Be the first to rate karpathy-llm-wiki and help others make informed decisions.

    Developer

    Astro-Han

    Astro-Han (Yuhan Lei) builds open-source tooling for AI-assisted knowledge management. The karpathy-llm-wiki project packages Karpathy's LLM Wiki workflow into a reusable Agent Skills skill compatible with Claude Code, Cursor, and Codex. The project is maintained as a community implementation with a focus on durable, compounding knowledge bases over raw retrieval approaches.

    Read more about Astro-Han
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    claude-obsidian icon

    claude-obsidian

    A free, MIT-licensed Claude Code plugin that turns Obsidian into a self-organizing AI second brain, automatically ingesting sources into linked plain-Markdown notes you own.

    Maker Skills icon

    Maker Skills

    A collection of 19 open-source AI agent skills for founders and indie operators, covering decisions, research, second-brain workflows, content rotation, and meta-skills to author more.

    Atomic icon

    Atomic

    An open-source, AI-augmented knowledge graph that connects notes, articles, and research with semantic search, wiki synthesis, and agentic chat.

    Browse all tools

    Related Topics

    Knowledge Management

    AI-powered systems for organizing, discovering, and accessing collective team knowledge with intelligent search, tagging, and contextual recommendations across knowledge bases and wikis.

    140 tools

    Agent Skill Registries

    Registries and directories that catalog agent capabilities, skills, and competencies, enabling discovery and composition of agent abilities across platforms.

    94 tools

    Retrieval-Augmented Generation

    RAG Systems that enhance LLM outputs by retrieving relevant information from external knowledge bases, combining the power of generative AI with information retrieval for more accurate and contextual responses.

    110 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions