A community-driven registry for the Claude Code ecosystem. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Skill for Claude, Cursor & Copilot that automates the Karpathy LLM Wiki workflow: ingest web, GitHub, and YouTube URLs i
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).
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.md tells AI agents to consult the wiki before answering domain questions.inbox.md gives 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.
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.
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.

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.
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.
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).
For a maintained wiki built with this skill, see ndjordjevic/agentic-ai-wiki.
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.
Generated wikis include AGENTS.md, which tells AI agents to:
wiki/index.md before answering domain questions.[[wikilinks]] into relevant source pages.Agents are also instructed not to run git commit or git push unless the human explicitly asks.
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.
ML engineering — model training, deployment, MLOps, monitoring
DevOps practices — CI/CD, containers, monitoring, infrastructure automation
Professional skills marketplace with production-ready skills for enhanced development
Self-learning system that captures corrections and syncs them to CLAUDE.md and AGENTS.md