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

wyn-skills

v1.0.7

Published

AI Skills Installer

Downloads

817

Readme

wyn-skills

wyn-skills is a Node.js-based CLI for installing AI skills into AI coding assistant/editor configuration directories.

The installer reads all skills from the skills/ folder, checks each skill's metadata, then copies compatible skills into the selected target.

Features

  • Install skills to multiple targets: Antigravity, Antigravity CLI, Codex, Cursor, and Gemini.
  • Install all skills, or select specific skills with flags.
  • Check installed versions through .installed.json so skills with the same version are not copied again.

Installation and Usage

Run directly with npx:

npx wyn-skills --codex

General format:

npx wyn-skills --<target> [--<skill-name> ...]

Check the installed CLI version:

npx wyn-skills --version

Example: install all skills to Codex:

npx wyn-skills --codex

Example: install specific skills:

npx wyn-skills --codex --java-spring-boot-unit-testing
npx wyn-skills --antigravity-cli --java-spring-boot-code-style --java-spring-boot-integration-testing

Supported Targets

| Flag | Target | Installation Directory | | :--- | :--- | :--- | | --antigravity | Antigravity | ~/.gemini/antigravity/skills | | --antigravity-cli | Antigravity CLI | ~/.gemini/antigravity-cli/skills | | --codex | Codex | ~/.codex/skills | | --cursor | Cursor | ~/.cursor/skills | | --gemini | Gemini | ~/.gemini/skills |

Available Skills

| Skill | Description | | :--- | :--- | | java-spring-boot-code-style | Java code style guide for Spring Boot projects with Lombok. | | java-spring-boot-integration-testing | Spring Boot integration testing patterns with Testcontainers, WireMock, MockMvc, and Awaitility. | | java-spring-boot-unit-testing | Spring Boot unit testing guide with JUnit 5 and Mockito using Detroit Style TDD. | | skill-creator | Instructions for creating a new agent skill following this project's structure. |

Skill names in the CLI follow the folder names inside skills/.

Project Structure

wyn-skills/
|-- bin/
|   `-- install.js
|-- skills/
|   |-- java-spring-boot-code-style/
|   |   |-- SKILL.md
|   |   `-- metadata.json
|   |-- java-spring-boot-integration-testing/
|   |   |-- SKILL.md
|   |   `-- metadata.json
|   |-- java-spring-boot-unit-testing/
|   |   |-- SKILL.md
|   |   `-- metadata.json
|   `-- skill-creator/
|       |-- SKILL.md
|       `-- metadata.json
|-- package.json
`-- README.md

Adding a New Skill

Add a new folder inside skills/:

skills/
`-- new-skill-name/
    |-- SKILL.md
    `-- metadata.json

SKILL.md must start with YAML frontmatter:

---
name: new-skill-name
description: Brief skill description
---

metadata.json must contain the skill information:

{
  "name": "new-skill-name",
  "version": "1.0.0",
  "description": "Brief skill description"
}

License

MIT