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

@leapx-ai/vibedocs

v0.1.3

Published

Open-core VibeCoding documentation CLI, templates, scaffold, and shared rule engine.

Readme

VibeDocs

VibeDocs is a local-first documentation toolkit for projects that need to stay understandable to AI and humans.

VibeDocs 是一个本地优先的文档工具,帮助项目更容易被 AI 理解、被团队协作、并保持可持续开发。

Package: @leapx-ai/vibedocs
CLI: vibedocs

Install / 安装

Requirements / 环境要求:

  • Node.js >= 22
npm install @leapx-ai/vibedocs
npx vibedocs --help

What It Does / 它提供什么

  • Initialize a structured docs system inside a repo
    在仓库里初始化一套结构化文档系统
  • Create feature-level document packages
    为功能生成局部文档包
  • Audit structural drift and semantic drift locally
    本地检查结构漂移和语义漂移
  • Run glossary checks before terminology inconsistency spreads
    在术语漂移扩散前做巡检

Quick Start / 快速开始

Initialize a minimal docs system / 初始化最小文档系统:

npx vibedocs init --mode minimal

Create a feature package / 生成功能包:

npx vibedocs feature create focus-mode

Run audit / 运行巡检:

npx vibedocs audit

Enable heuristic semantic checks / 开启启发式语义巡检:

npx vibedocs audit --semantic heuristic --format json

Check glossary drift / 检查术语漂移:

npx vibedocs glossary check --path docs/product --format json

Config / 配置

The CLI reads either of these files from the project root.
CLI 会从项目根目录读取以下任一配置文件:

  • vibedocs.config.json
  • .vibedocsrc.json
{
  "projectName": "Demo Project",
  "owner": "Berlin",
  "defaultMode": "standard",
  "featureSlugStyle": "snake",
  "glossaryPaths": ["docs/product", "docs/features"],
  "rulePacks": ["rule-packs/team-defaults.json"]
}

Programmatic API / 编程接口

import { runAudit } from "@leapx-ai/vibedocs";

const report = await runAudit(undefined, process.cwd(), {
  changedPaths: ["src/app.js"],
  semantic: "heuristic",
});

console.log(report.summary);

Stable exports / 稳定导出:

  • @leapx-ai/vibedocs
  • @leapx-ai/vibedocs/config
  • @leapx-ai/vibedocs/reporting
  • @leapx-ai/vibedocs/rule-engine

Docs / 文档