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

@nuskin/skills

v1.0.0

Published

Portable AI skills registry and installer CLI for Codex, Claude, and Copilot.

Readme

AI Skills Registry

This repository is the source of truth for portable, governed AI skills. Each skill captures a reusable capability in a vendor-neutral format so it can be adapted across assistants such as Codex, Claude, and Copilot.

Design Principles

  • simple
  • declarative
  • composable
  • vendor-neutral

Repository Layout

index.yaml
package.json
src/
skills/
  <skill-name>/
    skill.yaml
    instructions.md
    adapters/
      codex.md
      claude.md
      copilot.md
  • index.yaml is the registry catalog.
  • package.json publishes the public npm CLI as @nuskin/skills.
  • src/ contains the JavaScript CLI implementation.
  • skill.yaml stores the metadata contract for a skill.
  • instructions.md stores the assistant-agnostic behavior.
  • adapters/ stores optional assistant-specific guidance.

skill.yaml Contract

name: example-skill
version: 1.0.0
description: Short description of the reusable capability.
inputs:
  - name: request
    type: string
    required: true
    description: What the skill needs from the caller.
outputs:
  - name: result
    type: string
    description: What the skill returns.
tags:
  - example
owner: Platform (Kaizen)
compatibility:
  - codex
  - claude
  - copilot

Use semantic versioning. Keep instructions.md focused on intent, decision rules, and expected outputs rather than tool-specific implementation details.

CLI

The repository ships a public npm CLI named @nuskin/skills.

Examples:

npx @nuskin/skills list
npx @nuskin/skills show semantic-release-eslint
npx @nuskin/skills install semantic-release-eslint --target codex
npx @nuskin/skills install semantic-release-eslint --target claude
npx @nuskin/skills install semantic-release-eslint --target copilot
npx @nuskin/skills help

During local development, install dependencies and run the CLI directly:

yarn install
node src/cli.js list
yarn validate
node src/cli.js validate

Install Targets

  • codex installs rendered skills into ${CODEX_HOME:-~/.codex}/skills.
  • claude installs rendered skills into ${CLAUDE_HOME:-~/.claude}/skills.
  • copilot installs rendered prompt files into ./.github/prompts by default.

The Copilot prompt-file workflow is workspace-scoped rather than a global personal skill store. Prompt files are currently a GitHub public preview.

Public Repository Rules

This repository is public. Do not commit:

  • secrets, tokens, passwords, or API keys
  • environment variable values
  • private URLs, internal board links, or private repository names
  • customer data, personal data, or production identifiers
  • local machine paths or assumptions that only work on one developer workstation

Keep skills portable and safe to publish.

Current Status

Phase 1 includes the first migrated skill:

  • semantic-release-eslint

The public CLI is scaffolded in JavaScript with JSDoc and runtime validation. Legacy Codex-oriented helper scripts remain in the repository during the transition and are not yet part of the portable registry contract.

See CONTRIBUTING.md for authoring rules and review expectations.