npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@micuintus/llm-wiki

v1.4.8

Published

As minimal as Pi. Karpathy's LLM Wiki pattern as a minimal, agent-agnostic skill.

Readme

@micuintus/llm-wiki

As minimal as Pi.

Karpathy's LLM Wiki pattern as a skill. One file. ~6 KB. No dependencies, no CLI, no web server, no Obsidian plugin.

The user curates sources. The LLM does the bookkeeping — summarizing, cross-linking, flagging contradictions. Knowledge compounds instead of being re-derived from raw chunks on every query.

Install

Pi (npm):

pi install npm:@micuintus/llm-wiki

Pi (GitHub):

pi install git:github.com/micuintus/llm-wiki

Everyone else:

# Copy the skill directory (SKILL.md + its lazy-loaded recipes). Start ingesting.
curl -L https://github.com/micuintus/llm-wiki/archive/refs/heads/main.tar.gz \
  | tar -xz --strip-components=1 -C ~/your-agent/skills/ llm-wiki-main/llm-wiki

That lands ~/your-agent/skills/llm-wiki/SKILL.md with its references/ alongside, so the lazy-loaded recipes resolve. (SKILL.md is the only always-loaded file — the rest is read on demand.)

What you get

One file: SKILL.md. Everything else is lazy-loaded — referenced by path in the skill text, never loaded until you actually need it.

Agent session recipes (lazy-loaded):

  • Pi sessions — JSONL trees with fork detection
  • Claude Code / opencode / Gemini CLI — transcripts, SQLite, JSON

Code-source recipe (lazy-loaded) — grep+cite-by-line conventions for when the source is a repository rather than prose.

Web chat ingestion — Claude.ai, ChatGPT, Gemini, Le Chat via CDP. Ships as a separate subskill (skills/ingest-web-chat/).

The lazy-loaded subskills sleep forever until you wake them. (Don't forget to kiss these sleeping beauties.)

Use cases

  • Reading a book — chapter summaries, character/concept pages, theme threads, all interlinked.
  • Researching a topic across many papers — concept pages cite multiple sources; contradictions surface instead of getting lost.
  • Mapping an ecosystem (e.g., the Pi extension landscape) — taxonomies, comparisons, primitive mappings.
  • Documenting your own project — decisions, architecture, bugs, open questions, all linked through one schema.

Why this exists

Most wiki implementations ship a CLI, a web server, a static site generator, and 2,000 tests. That's fine if you want infrastructure. This is for people who want a pattern — a convention the agent already understands — and nothing else.

Conventions live in the skill text, not in code. The wiki itself is plain markdown on disk — if you ever switch agents or skills, your data travels with you unchanged.

Related work

The Karpathy gist has spawned a diverse ecosystem. Every implementation below shares the same three-layer foundation (raw sources → compiled wiki → schema); they differ in shape (how the agent consumes the pattern) and weight (how much tooling ships alongside the skill).

What makes @micuintus/llm-wiki different: it is a pure skill — a single SKILL.md (~6 KB) plus lazy-loaded reference files that any agent (Pi, Claude Code, Codex, Cursor) can read directly. No runtime dependencies, no generated code, no CLI to install, no web server to run, no Obsidian plugin to manage. Conventions are enforced by the skill text itself, not by code. If you want the lightest possible commitment to the pattern — copy one file, start ingesting — this is it. Other implementations add value in exchange for weight: IDE plugins, static-site generators, code-based guardrails, or self-driving agents. Pick the shape that matches your workflow.

| Repo | Stars | Contributors | License | Language | Shape | Notes | |------|-------|-------------|---------|----------|-------|-------| | Astro-Han/karpathy-llm-wiki | 651 | 1 | MIT | Markdown | Skill | Agent Skills-compatible. Single-file SKILL.md, no session recipes. Closest to a vanilla skill. | | toolboxmd/karpathy-wiki | 66 | 1 | — | Shell | Skill | Two Claude Code skills: setup + maintenance. Hooks-driven. | | balukosuri/llm-wiki-karpathy | 125 | 1 | — | — | Skill | Article + implementation walkthrough. | | lewislulu/llm-wiki-skill | 447 | 2 | MIT | TypeScript | Skill + ecosystem | Skill + Obsidian audit plugin + local web viewer + shared TypeScript audit library. For users who want IDE-like tooling. | | lucasastorian/llmwiki | 808 | — | Apache-2.0 | Python + TypeScript | CLI tool | Upload documents, connect Claude via MCP, agent writes the wiki. MCP-native. | | Pratiyush/llm-wiki | 229 | 1 | MIT | Python | CLI tool | llmwiki CLI: session ingestion, static site generation, 2,651 tests, 16 lint rules, MCP server, Playwright E2E, AI exports. Most feature-rich; heaviest. | | Kausik-A/pi-llm-wiki | 9 | 1 | MIT | TypeScript | Pi-native | Pi package with bundled skill + Pi extension. Enforces guardrails via code rather than convention. | | yologdev/karpathy-llm-wiki | 43 | 2 | — | TypeScript | Self-growing | "Yoyo" AI agent grows the wiki from Karpathy's founding prompt. Commits are the agent's work. Includes web viewer. | | hsuanguo/llm-wiki | 11 | 2 | MIT | Python | Self-growing | Wiki that "evolves with you" + Python scaffolding. |

Changelog

See CHANGELOG.md.

License

MIT