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

@boses/skillink

v1.1.0

Published

统一 AI Skills 管理工具 - 像 pnpm 一样链接到各 AI 工具目录

Readme

Skillink 🚀

English | 简体中文

Skillink 是一个 AI Skills 链接工具。
你可以在统一目录(.agents/skills)编写技能,并通过符号链接(Symlink/Junction)同步到多个 AI 工具目录。

核心理念:一次编写,处处生效。

特性

  • Node.js 20+ + TypeScript 的简洁架构
  • 基于符号链接同步,零拷贝、即时生效
  • 交互式 init 初始化流程
  • sync --watch 支持实时监听技能目录变化
  • 安全清理策略(仅清理位于 source 边界内的链接)
  • 支持 CLI 国际化输出(en / zh-CN

安装

推荐安装为开发依赖:

# pnpm
pnpm add -D @boses/skillink

# npm
npm install -D @boses/skillink

# yarn
yarn add -D @boses/skillink

快速开始

1)初始化

npx skillink init

init 第一步会先询问语言(English / 简体中文),然后自动创建:

  • .agents/skills(包含示例技能)
  • skillink.config.ts

2)编写技能

.agents/skills/
└── react-expert/
    └── SKILL.md

3)同步

npx skillink sync

监听模式:

npx skillink sync --watch

命令

| 命令 | 说明 | | :------- | :----------------------------------------------------------------- | | init | 初始化项目并生成配置。 | | sync | 同步技能到所有启用目标(支持 --watch)。 | | status | 显示详细同步状态。 | | clean | 清理配置目标中的已生成符号链接。 | | check | 基于 npm versions 的语义化版本检查更新(不依赖 latest 标签)。 |

配置说明(skillink.config.ts

import { defineConfig } from '@boses/skillink';

export default defineConfig({
  // CLI 语言: 'en' | 'zh-CN'(默认: 'en')
  locale: 'en',
  // 技能源目录
  source: '.agents/skills',
  // 同步目标
  targets: [
    {
      name: 'cursor',
      path: '.cursor/rules',
      enabled: true,
    },
    {
      name: 'gemini',
      path: '.gemini/skills',
      enabled: true,
    },
  ],
});

Git 建议

  • 推荐提交:skillink.config.ts.agents/skills/**
  • 不建议提交:链接产物目录(如 .cursor/rules.gemini/skills
  • init 完成后会提示将目标目录加入 .gitignore

许可证

MIT