Wei Llm Wiki banner
zyw-Wayne zyw-Wayne

Wei Llm Wiki

AI community

Description

LLM Wiki — Claude Code Skill to compile articles from any source into a structured, queryable knowledge base. Based on Karpathy's LLM Wiki methodology. 基于 Karpathy 方法论的知识库编译技能,支持微信公众号/网页/GitHub/本地文件摄入、知识图谱、进化追踪。

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

wei-llm-wiki

**[English](#english) | [中文](#中文)**

**Live Example / 实际案例**: [llm-wiki-kb](https://github.com/zyw-Wayne/llm-wiki-kb) — A real knowledge base built with this skill, covering AI coding tools, Agent development, Prompt engineering and more.

Knowledge Graph Preview / 知识图谱预览
Interactive Knowledge Graph — 76 nodes · 291 edges · 15 categories / 交互式知识图谱可视化


LLM Wiki — Compile Articles into a Structured Knowledge Base

A [Claude Code](https://docs.anthropic.com/en/docs/claude-code) Skill based on [Karpathy's LLM Wiki methodology](https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f). Instead of re-deriving knowledge from raw text every time (like RAG), LLM Wiki **pre-compiles** articles into structured, queryable wiki pages. Every new article makes the whole wiki richer. Every good answer gets saved back as a new knowledge node. **Compound knowledge, not repeated inference.**

Install

npx skills add https://github.com/zyw-Wayne/wei-llm-wiki

Quick Start

wiki init ~/my-wiki                              # Set wiki root (persisted)
wiki ingest https://example.com/article           # Ingest an article
wiki query "What are the key takeaways?"          # Query the knowledge base

Multi-Source Ingestion

One command, auto-detects source type:

Source Example Method
WeChat Articles https://mp.weixin.qq.com/s/... wechat-article-down skill
GitHub Doc Repos https://github.com/owner/repo GitHub MCP scan + batch read
Web Pages https://blog.example.com/... chrome-devtools extraction + local images
Local Files ~/notes/research.md Direct read (md/html/txt)
# Mixed sources in one command
wiki ingest https://mp.weixin.qq.com/s/aaa ~/notes/b.md https://blog.example.com/c

8 Operations

| Co