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

@kb-skills/core

v1.5.0

Published

Core engine for kb-skills: Skill runner, KB writer, progress tracking and coverage verification.

Readme

@kb-skills/core

English | 中文

kb-skills 的框架无关核心原语:

  • ScanAdapter — 可插拔代码扫描器(Koa / Express / React / Vue 2 / Vue 3 / ...)
  • writeKb — 从 ScanResult 输出五层 Markdown 知识库
  • SkillRunner — 编排 scan → write → verify 流程
  • Progress — 追踪长时间运行、可恢复的 Skill 任务的逐文件完成情况
  • Verifier — 根据扫描清单验证 KB 完整性
  • Logger — 轻量、无额外依赖的控制台日志工具

通常你不需要直接依赖此包,而是使用 @kb-skills/cli 和一个或多个 @kb-skills/adapter-* 包。

安装

npm i @kb-skills/core

配套包

| 包 | 用途 | |---|---| | @kb-skills/cli | CLI 入口 | | @kb-skills/adapter-koa | Koa + Mongoose / Prisma / TypeORM / Sequelize | | @kb-skills/adapter-express | Express + Mongoose / Prisma / TypeORM / Sequelize | | @kb-skills/adapter-react | React 19 + Zustand | | @kb-skills/adapter-vue3 | Vue 3 + Pinia | | @kb-skills/adapter-vue2 | Vue 2 + Vuex |

核心类型

// 每个适配器都实现此接口
interface ScanAdapter {
  readonly name: string;
  detect(projectRoot: string): Promise<boolean>;
  scan(modulePath: string): Promise<ModuleInfo>;
}

// Raw payload 联合类型 — 通过 `framework` 字段区分
type ScanRaw = KoaRaw | ReactRaw | Vue3Raw | Vue2Raw;

// UI 组件库检测结果
interface UiLibraryInfo {
  name: UiLibraryKind; // "antd" | "element-ui" | "element-plus" | "vant" | ...
  version?: string;
  components: string[];
}

完整类型定义请参见 src/types.ts

许可证

MIT