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

@ai-slate/playbooks

v0.0.2

Published

采用 **skills-first** 结构:

Readme

AISlate Skills

采用 skills-first 结构:

skills/<skill-id>/SKILL.md
bundles.json
scripts/install.mjs
bin/aislate-skills.js

NPM V1 安装(多平台 + project/global)

# 项目级安装(target 必填)
npx @ai-slate/playbooks install \
  --bundle requirement-to-tasks \
  --platform cursor \
  --scope project \
  --target E:/code/your-project

# 全局级安装(按平台写入用户目录)
npx @ai-slate/playbooks install \
  --bundle requirement-to-tasks \
  --platform codex \
  --scope global

# dry-run
npx @ai-slate/playbooks install \
  --bundle requirement-to-tasks \
  --platform trae \
  --scope project \
  --target E:/code/your-project \
  --dry-run

--platform 支持:cursortraeclaude-codecodex
--scope 支持:projectglobal(必须显式指定)

安装后会在平台配置目录写入:

<config-root>/skills/<skill-id>/**      (包含 SKILL.md、scripts 等附属文件)
<config-root>/skills.lock.json
<config-root>/install.manifest.json

参数说明:

  • --bundle: bundles.json 中的安装单元 id(必填)
  • --platform: 安装平台(必填)
  • --scope: 安装作用域(必填)
  • --target: 目标项目路径(--scope project 时必填)
  • --strategy: merge(默认)或 replace
  • --dry-run: 只输出安装计划,不落盘

V1 边界

  • 仅支持本地包内 skill/bundle 安装
  • 暂不支持远程 URL/Git 动态来源(计划在 V2 引入)

协议与校验

  • bundles.json 仅用于把多个 skill 组成安装单元
  • 核心资产始终是 skills/*/SKILL.md
  • 协议定义见 docs/install-protocol.md
  • 执行 npm run validate 可检查 bundle、skill 文件和 frontmatter 约束