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

wikilm

v1.0.1

Published

CLI to initialize an LLM Wiki project — a structured, interlinked knowledge base maintained by LLM agents

Downloads

25

Readme

LLM Wiki CLI

English | 中文


English

A CLI to initialize an LLM Wiki project — a structured, interlinked knowledge base maintained by LLM agents. Drop raw source documents into raw/, and let your AI coding assistant build and maintain the wiki for you.

Installation

npm install -g wikilm

Usage

wikilm init [directory]          # Initialize in target dir (defaults to current)
wikilm init --agent all          # Generate configs for all supported tools
wikilm init --agent claude,codex # Generate configs for specific tools
wikilm init --help               # Show help

Supported Agents

| Agent | Config File | Skills | |-------|-------------|--------| | claude | CLAUDE.md | ingest, query, lint | | codex | AGENTS.md | — | | opencode | AGENTS.md | — | | kilo-code | AGENTS.md | — | | kilo-cli | AGENTS.md | — | | cursor | .cursorrules | — | | cline | .clinerules | — | | qwen-code | .qwen/rules/llm-wiki.md | — | | qoder | .qoder/rules/llm-wiki.md | — | | lingma | .lingma/rules/llm-wiki.md | — | | trae | .trae/rules/llm-wiki.md | — |

What gets created

your-project/
├── raw/                          # Drop source documents here
├── wiki/
│   ├── index.md                  # Catalog of all wiki pages
│   ├── log.md                    # Chronological activity log
│   ├── sources/                  # Summaries of ingested documents
│   ├── entities/                 # People, orgs, places, objects
│   ├── concepts/                 # Ideas, theories, frameworks
│   └── syntheses/                # Comparisons, cross-cutting analysis
├── CLAUDE.md                    # (if --agent claude) Instructions for Claude Code
├── .cursorrules                 # (if --agent cursor) Instructions for Cursor
└── .claude/skills/
    ├── ingest/SKILL.md           # Skill: process new source documents
    ├── query/SKILL.md            # Skill: answer questions from the wiki
    └── lint/SKILL.md             # Skill: health-check the wiki

License

MIT


中文

LLM Wiki CLI — 一键初始化 LLM Wiki 项目。LLM Wiki 是一个由 AI 助手维护的结构化、互联的知识库。将原始文档放入 raw/ 目录,AI 助手会自动帮你构建和维护 wiki。

安装

npm install -g wikilm

使用

wikilm init [目标目录]              # 在指定目录初始化(默认当前目录)
wikilm init --agent all            # 为所有支持的 AI 工具生成配置文件
wikilm init --agent claude,codex   # 为指定工具生成配置
wikilm init --help                 # 查看帮助

支持的 AI 工具

| 工具 | 配置文件 | 技能 | |------|----------|------| | claude | CLAUDE.md | ingest, query, lint | | codex | AGENTS.md | — | | opencode | AGENTS.md | — | | kilo-code | AGENTS.md | — | | kilo-cli | AGENTS.md | — | | cursor | .cursorrules | — | | cline | .clinerules | — | | qwen-code | .qwen/rules/llm-wiki.md | — | | qoder | .qoder/rules/llm-wiki.md | — | | lingma | .lingma/rules/llm-wiki.md | — | | trae | .trae/rules/llm-wiki.md | — |

生成的文件结构

your-project/
├── raw/                          # 原始文档放这里
├── wiki/
│   ├── index.md                  # 全站目录
│   ├── log.md                    # 操作日志
│   ├── sources/                  # 原始文档摘要
│   ├── entities/                 # 人物、组织、地点、事物
│   ├── concepts/                 # 概念、理论、方法论
│   └── syntheses/                # 对比分析、综合论述
├── CLAUDE.md                    # Claude Code 的指令文件
├── .cursorrules                 # Cursor 的指令文件
└── .claude/skills/
    ├── ingest/SKILL.md           # 技能:处理新文档
    ├── query/SKILL.md            # 技能:从 wiki 中查询
    └── lint/SKILL.md             # 技能:wiki 健康检查

开源协议

MIT