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

@agent-wiki/mcp-server

v0.7.0

Published

Agent-driven knowledge base — immutable raw sources + mutable wiki + self-checking lint. MCP server, no LLM needed.

Readme

agent-wiki

The knowledge base that makes AI agents smarter over time.

Instead of retrieving raw fragments every query (RAG), your agent compiles, refines, and interlinks knowledge — like a team wiki that writes itself.

Works with Claude Code, Cursor, Windsurf, and any MCP client. No LLM built in — your agent IS the intelligence.

npm CI Node MCP License: MIT

Quick Start

npx @agent-wiki/mcp-server serve --wiki-path ./my-knowledge

Add to your MCP client config (Claude Code, Cursor, Windsurf, Claude Desktop):

{
  "mcpServers": {
    "agent-wiki": {
      "command": "npx",
      "args": ["-y", "@agent-wiki/mcp-server", "serve", "--wiki-path", "/path/to/knowledge"]
    }
  }
}

That's it. Your agent now has a persistent, structured knowledge base.

Why Not RAG?

| | RAG | agent-wiki | |---|---|---| | Approach | Retrieve fragments at query time | Build and maintain compiled knowledge | | Memory | Stateless — forgets after each query | Persistent — knowledge accumulates | | Quality | Raw chunks, often noisy | Curated, structured, interlinked | | Cost | Embedding + retrieval every query | One-time compilation, free reads | | Contradictions | Invisible — buried in source docs | Flagged automatically by lint | | Source tracking | Lost after retrieval | Full provenance chain (raw -> wiki) |

Features

| Feature | Description | |---------|-------------| | Immutable Sources | SHA-256 verified raw/ layer — write-once, tamper-proof, full provenance | | Knowledge Compilation | Agent builds structured wiki pages from raw sources — not retrieve-and-forget | | BM25 Search | Field-weighted scoring, synonym expansion, fuzzy matching, CJK tokenization — zero LLM | | Auto-Classification | Zero-LLM heuristic assigns entity types and tags across 10 categories | | Multi-Level Indexes | Auto-generated index.md at every directory level — nested topic hierarchies with sub-topic navigation | | Self-Checking Lint | Catches contradictions, broken links, orphan pages, stale content | | Atlassian Import | One-command Confluence pages and Jira issues with full hierarchy | | File Versioning | Auto-version same-name files, query latest, list all versions | | Directory Import | Point to a folder — imports all files with optional glob filtering | | Document Extraction | PDF (with per-page access), DOCX, XLSX (multi-tab), PPTX — text extracted automatically | | 16 MCP Tools | Full CRUD + search + lint + health checks | | Git-Native | Plain Markdown — diffable, blameable, revertable |

Architecture

Three immutability layers, inspired by how compilers work:

| Layer | Mutability | Role | |-------|-----------|------| | raw/ | Immutable | Source documents — write-once, SHA-256 verified | | wiki/ | Mutable | Compiled knowledge — structured pages that improve over time | | schemas/ | Reference | Entity templates — consistent structure across knowledge types |

Design Principles

  1. Raw is immutable — Source documents are write-once, SHA-256 verified. Ground truth never changes.
  2. Wiki is mutable — Compiled knowledge improves with every interaction.
  3. No LLM dependency — Zero API keys, zero cost per operation. Your agent IS the intelligence.
  4. Self-checking — Lint catches structural issues and flags potential contradictions.
  5. Knowledge compounds — Every write enriches the whole wiki. Synthesis creates higher-order understanding.
  6. Provenance matters — Every wiki claim traces back to raw sources.
  7. Git-native — Plain Markdown. Every change is diffable, blameable, and revertable.

Documentation

Acknowledgment

Inspired by Andrej Karpathy's LLM Wiki concept — the idea that AI agents should compile and maintain knowledge, not just retrieve raw fragments. This project is an independent, full implementation of that vision.

License

MIT