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

axiom-wiki

v0.3.1

Published

The wiki that maintains itself. AI-powered personal knowledge base that ingests documents, extracts entities, and maintains a structured wiki.

Downloads

634

Readme

Axiom Wiki init screen

Unlike RAG systems that re-derive answers from raw sources on every query, Axiom compiles knowledge into an interconnected wiki of markdown pages and keeps it current as new sources arrive. Inspired by Andrej Karpathy's llm-wiki.


Quick Start

npm install -g axiom-wiki
axiom-wiki init

The setup wizard configures your LLM provider, wiki directory, and source folder. Then drop files into raw/ and ingest:

axiom-wiki ingest

Or auto-wiki a project folder:

axiom-wiki autowiki

Launch the interactive shell:

axiom-wiki

See the full documentation for detailed guides.


Supported LLM Providers

| Provider | Free Tier | Get API Key | |---|---|---| | Google Gemini (recommended) | Yes | aistudio.google.com | | OpenAI | No | platform.openai.com | | Anthropic | No | console.anthropic.com | | Ollama (local) | Free | ollama.com |


Commands

axiom-wiki                    Launch interactive shell
axiom-wiki init               First-time setup wizard
axiom-wiki ingest [file|url]  Ingest a file, URL, or scan raw/
axiom-wiki query              Chat against your wiki
axiom-wiki autowiki           Agent explores and builds a wiki
axiom-wiki sync               Agent updates stale wiki pages
axiom-wiki watch              Auto-ingest new files in raw/
axiom-wiki clip [url]         Clip a URL to raw/
axiom-wiki sources            Manage ingested sources
axiom-wiki review             Resolve wiki contradictions
axiom-wiki graph              Visualize the wiki page graph
axiom-wiki model              Switch LLM provider or model
axiom-wiki status             Wiki statistics
axiom-wiki mcp                Start MCP server (Claude Code / Cursor)

axwiki is an alias for axiom-wiki.


Key Features

Ingest documents — Drop PDFs, markdown, images, DOCX, or HTML into raw/. The agent extracts entities, concepts, and creates cross-linked wiki pages. Docs

Auto-wiki anythingaxiom-wiki autowiki lets an AI agent autonomously explore your project or document folder, decide what pages to create, and build a comprehensive wiki in batches. Works on codebases, company docs, personal notes — the agent adapts to the content. Docs

Incremental compilation — Source files are tracked by SHA-256 hash. Re-running axiom-wiki ingest skips unchanged files and only processes new or modified sources — fast even on large wikis.

Incremental syncaxiom-wiki sync detects changes and lets the agent update stale pages and document new areas. Docs

Local project wikis — Scope a wiki to a single project inside .axiom/. Auto-detected, no flags needed. Docs

Web clipperaxiom-wiki clip <url> fetches articles via Readability and saves them for ingest. Docs

MCP integration — Use all wiki tools from Claude Code or Cursor. Docs

Obsidian compatible — Plain markdown with frontmatter. Open wiki/ as a vault. Docs

Cost tracking — Every operation logs tokens and cost to wiki/usage.log. Docs


Installation

npm install -g axiom-wiki    # or: yarn, pnpm
npx axiom-wiki init          # run without installing

From source:

git clone https://github.com/abubakarsiddik31/axiom-wiki.git
cd axiom-wiki && pnpm install && pnpm build && pnpm link --global

Docker:

docker run -it -v $(pwd):/wiki axiomwiki/axiom-wiki init

See Installation docs for Docker Compose and Ollama setup.


Wiki Structure

For local wikis (inside a project), everything lives in .axiom/:

.axiom/
  config.json           Local config
  state.json            Compilation state (source hashes)
  map-state.json        Autowiki/sync state
  raw/                  Source files (PDF, MD, DOCX, images, HTML)
  wiki/
    pages/
      entities/         People, places, organisations
      concepts/         Ideas, topics, theories
      sources/          One summary per source file
      analyses/         Filed answers, comparisons
    index.md            Page catalog
    log.md              Operation history
    usage.log           Token usage and cost

Sponsoring

Axiom Wiki is free and open source. If it saves you time, consider supporting development:


Contributing

PRs are welcome. See CONTRIBUTING.md for the full guide.


License

Elastic License 2.0 (ELv2) — Free to use, self-host, and modify. See LICENSE for details.

Axiom Wiki — The wiki that maintains itself.