Claude Wiki banner
giovani-junior-dev giovani-junior-dev

Claude Wiki

AI community

Description

🧠 Persistent knowledge base skill for Claude Code. Gives your AI assistant memory across sessions. Based on Andrej Karpathy's LLM Wiki methodology. One command, 30 seconds.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Claude Wiki

**Persistent knowledge base for Claude Code projects.** Based on the [LLM Wiki](https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f) methodology by Andrej Karpathy.


The Problem

Every time you start a new Claude Code session, your AI assistant starts from zero. No memory of what was discussed yesterday. No knowledge of decisions made last week. No awareness of lessons learned last month.

**Claude Wiki fixes this.** One command. 30 seconds. Your project has a brain.

What It Does

Claude Wiki bootstraps a structured wiki inside your project β€” interlinked Markdown files with YAML frontmatter, cross-references, and automatic mirroring to [Obsidian](https://obsidian.md/) via MCP.

Instead of rediscovering context from scratch each session, Claude builds and maintains a cumulative knowledge base:

  • Ingests sources β€” articles, docs, notes dropped into raw/
  • Extracts entities β€” technologies, libraries, APIs, services
  • Maps concepts β€” patterns, architectures, methodologies
  • Records decisions β€” context, options considered, trade-offs
  • Preserves learnings β€” bug fixes, insights, root causes
  • Answers queries β€” synthesized responses with citations to wiki pages

Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  raw/    β”‚    β”‚  wiki/   β”‚    β”‚ CLAUDE.md β”‚
β”‚          β”‚    β”‚          β”‚    β”‚           β”‚
β”‚ Immutable│───>β”‚ Generatedβ”‚<──>β”‚  Schema   β”‚
β”‚ Sources  β”‚    β”‚ by Claudeβ”‚    β”‚  (Rules)  β”‚
β”‚          β”‚    β”‚          β”‚    β”‚           β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
 You write       Claude          Co-evolved
 Claude reads    owns this       between you
 NEVER modifies  entirely        and Claude

                β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
                β”‚   Obsidian Vault     β”‚
                β”‚   (Mirror via MCP)   β”‚
                β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

**Three layers:**

  1. raw/ β€” Immutable source material. You drop files here. Claude reads but never modifies