pin-llm-wiki
Automates the Karpathy LLM Wiki workflow: turns web, GitHub, and YouTube URLs into well-structured, citable, wikilinked pages with automatic linting and sourcing — invoke with /pin-llm-wiki
pinned to #c5de456updated last month
Ask your AI client: “install skills/pin-llm-wiki”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install skills/pin-llm-wikimetahub onboarded this repo on the author's behalf.
If you own github.com/ndjordjevic/pin-llm-wiki on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
75
Last commit
last month
Latest release
published
- #agent-skill
- #claude-skill
- #cursor-skill
- #llm-wiki
About this skill
Pulled from SKILL.md at publish time.
Automates Karpathy's LLM wiki pattern: drop URLs in `inbox.md`, the skill fetches, ingests, and maintains a cited, agent-readable knowledge base.
Evaluation report
WarningsAutomated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.c5de456· last month
Kind-specific
31Skill: SKILL.md present
found at skills/pin-llm-wiki/SKILL.md · frontmatter source: SKILL.md
Skill: body content present
388 words · 2,758 chars · 5 sections · 1 code block
Skill: triggers declaredwarn
No `trigger` phrases in SKILL.md frontmatter
Add `trigger:` lines so Claude knows when to activate this skill — e.g. `when building MCP servers` or `for diagram creation`.
Skill: allowed-tools scope
no allowed-tools restriction (Claude may use anything)
Release history
1- releasecurrentc5de456warnlast month
Contents
A multi-editor skill that automates the Karpathy LLM Wiki pattern: drop in URLs, get a local, citable, cross-referenced wiki that agents can read before answering.
Where it runs: Claude Code (slash commands), GitHub Copilot and Cursor (install the skill + follow the same workflows; see below).
Why use it
pin-llm-wiki turns external sources into a durable knowledge base:
raw/keeps immutable captures of the original sources.wiki/holds summarized, wikilinked pages with citations back to raw files.AGENTS.mdtells AI agents to consult the wiki before answering domain questions.inbox.mdgives humans and agents a simple queue for future sources.
The result is a repo-local memory layer: reviewable in git, queryable by agents, and less dependent on whatever context happens to fit in one chat.
Install
Use the skills CLI: npx skills@latest add ndjordjevic/pin-llm-wiki (project) or -g (global, e.g. ~/.cursor/skills). Project installs land in .agents/skills/ (Cursor, Copilot, …) and .claude/skills/ (Claude Code)—not in ./skills/ (that path is only this repo’s package layout).
For Claude Code + Cursor + Copilot in one repo, create .claude first so the CLI can install one real copy under .agents/skills/ and symlink Claude Code to it.
mkdir -p .claude
npx skills@latest add ndjordjevic/pin-llm-wiki \
--agent claude-code --agent cursor --agent github-copilot -y
npx skills@latest add ndjordjevic/pin-llm-wiki -g # global
Use --agent … for a predictable layout in agent terminals. --list, skills.sh, npx skills@latest add --help.
Update
Refresh the skill files from GitHub. Scope should match how you installed:
# Project install: from that repo’s root, or force project scope
npx skills@latest update pin-llm-wiki -p
# Global install
npx skills@latest update pin-llm-wiki -g
Use -y to skip interactive scope prompts (the CLI can auto-pick project vs global when only one applies). skills update may recreate agent directories you do not use; delete those folders if you want a minimal tree. See npx skills@latest update --help.
Quickstart

Inside the repo that should become a wiki:
/pin-llm-wiki init
/pin-llm-wiki ingest https://github.com/org/repo
/pin-llm-wiki queue https://example.com
/pin-llm-wiki ingest
/pin-llm-wiki lint
After init, follow the generated wiki's AGENTS.md; it is the operating manual for agents working in that knowledge base.
Commands
Use /pin-llm-wiki in the agent. Claude Code, Cursor, and GitHub Copilot all use the same SKILL.md.
| Subcommand | What it does |
|---|---|
init | Scaffold inbox.md, .pin-llm-wiki.yml, AGENTS.md, wiki/, and raw/ |
ingest [url] | Ingest one URL, or omit url to process every pending item in inbox.md |
queue <url> ... | Add URLs to inbox.md without fetching or ingesting |
lint | Validate wiki health and apply light non-destructive fixes |
remove <slug> | Soft-delete a source into wiki/.archive/ |
Ingest rules, inbox HTML tags, companion repos, and multi-product deep mode live in skills/pin-llm-wiki/SKILL.md and its sibling workflow files.
What gets created
inbox.md source queue; drop URLs under ## Pending
.pin-llm-wiki.yml config: domain, detail level, source types, lint cadence
AGENTS.md canonical instructions for agents in the generated wiki
wiki/
index.md start here; full source list
overview.md rolling cross-source synthesis
log.md append-only ingest, refresh, and removal history
sources/ one page per ingested source
.archive/ soft-deleted sources
raw/
github/ immutable GitHub repo captures
youtube/ immutable YouTube transcripts + metadata
web/ immutable web page captures
The wiki is Markdown with [[wikilinks]]; opening the repo as an Obsidian vault is a comfortable way to read and navigate it (start from wiki/index.md).
Demo wiki
For a maintained wiki built with this skill, see ndjordjevic/agentic-ai-wiki.
Source types
Fetches are detail-aware: broader at standard / deep than at brief. Ingest then turns each raw capture into cited wiki pages (ingest.md).
| Type | Raw output | Smarts |
|---|---|---|
| GitHub | raw/github/<org>-<repo>.md | gh: metadata, README, repo layout, and more docs/ at higher detail; <!-- branch --> / optional <!-- clone --> (deep). |
| YouTube | raw/youtube/<video-id>-<slug>.md | yt-dlp: description, chapters, cleaned transcript (or a no-transcript flag). |
| Web | raw/web/<slug>.md | Crawls landing + docs (plus llms.txt / sitemap where useful); often pulls a companion GitHub repo into one unified page unless <!-- no-companion -->. deep can split multi-product sites: one umbrella + one sub-page per product, still backed by one raw file—similar to how langchain.com becomes a hub plus pages like LangGraph / LangSmith. |
GitHub URLs with a path after the repo (/tree/…, /blob/…, …) are single-page web only: no full-repo ingest, companion discovery, or deep product split on that URL.
Agent behavior
Generated wikis include AGENTS.md, which tells AI agents to:
- Read
wiki/index.mdbefore answering domain questions. - Follow
[[wikilinks]]into relevant source pages. - Cite wiki page names in answers.
- Say when the wiki does not contain an answer, then fetch current information online.
Agents are also instructed not to run git commit or git push unless the human explicitly asks.
Limits
This is a reviewable knowledge workflow, not an unattended publishing system. Generated pages should be inspected in git diffs. Large fetches have token guards, and Phase 1 lint defers contradiction and terminology-collision checks.
Reviews
No reviews yet. Be the first.
Related
Frontend Slides
Create beautiful slides on the web using Claude's frontend skills
Verification Before Completion
Evidence before assertions, always
Writing Plans
Turn specs into phased implementation plans
mh install skills/pin-llm-wiki