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

@wangjs-jacky/j-skills

v0.3.1

Published

CLI tool for managing Agent Skills - link, install, and manage skills across 35+ coding agent environments

Readme

j-skills

A unified registry for managing scattered Agent Skills - link once, install everywhere

npm version npm downloads License: MIT GitHub stars

中文文档

The Problem

If you develop Agent Skills, you've probably faced these issues:

  • Scattered Skills: Your skills are spread across multiple projects
  • Manual Copying: Installing to different agents requires copying files manually
  • Update Hell: Updating a skill means re-copying to every environment
  • No Central View: Hard to see what skills you have and where they're installed

The Solution

j-skills solves this with a two-step workflow:

┌─────────────────┐      ┌─────────────────┐      ┌─────────────────┐
│   Your Skills   │      │  j-skills       │      │  35+ Agents     │
│   (scattered)   │ ───► │  Registry       │ ───► │  (everywhere)   │
│                 │ link │  (unified)      │ inst │                 │
└─────────────────┘      └─────────────────┘      └─────────────────┘
  1. j-skills link - Register local skills to a central registry
  2. j-skills install - Distribute to any of 35+ agent environments

Architecture

graph TB
    subgraph "Your Local Skills"
        S1[skill-a/]
        S2[skill-b/]
        S3[skill-c/]
    end

    subgraph "j-skills Registry"
        R[~/.j-skills/linked/]
    end

    subgraph "Project Level"
        P1[.claude/skills/]
        P2[.cursor/skills/]
        P3[.cline/skills/]
    end

    subgraph "Global Level"
        G1[~/.claude/skills/]
        G2[~/.cursor/skills/]
        G3[~/.cline/skills/]
    end

    S1 -->|"j-skills link"| R
    S2 -->|"j-skills link"| R
    S3 -->|"j-skills link"| R

    R -->|"j-skills install (symlink)"| P1
    R -->|"j-skills install (symlink)"| P2
    R -->|"j-skills install --global"| G1
    R -->|"j-skills install --global"| G2

How It Works

Step 1: Link Your Skills

Register your local skill directories to the j-skills registry:

# Navigate to your skill directory
cd ~/projects/my-awesome-skill

# Link it to the registry
j-skills link

# Now it's in the registry!
j-skills link --list

What happens: A symlink is created in ~/.j-skills/linked/<skill-name> pointing to your original skill directory.

Step 2: Install to Agents

Install registered skills to any supported agent environment:

# Install to current project
j-skills install my-awesome-skill

# Install globally (available in all projects)
j-skills install my-awesome-skill --global

# Install to specific environments
j-skills install my-awesome-skill --env claude-code,cursor,windsurf

What happens: Symlinks are created in the target agent's skills directory, pointing to your original skill.

Step 3: Develop with Hot-Reload

Since everything uses symlinks, your changes are instantly available everywhere:

# Edit your skill
vim ~/projects/my-awesome-skill/skill.md

# Changes are immediately visible in:
# - .claude/skills/my-awesome-skill/
# - .cursor/skills/my-awesome-skill/
# - All other installed locations!

Why Symlinks?

| Approach | Disk Space | Updates | Management | |----------|------------|---------|------------| | Copy files | ❌ Duplicates | ❌ Manual | ❌ Scattered | | Symlinks | ✅ Zero copy | ✅ Instant | ✅ Centralized |

Installation

# Global installation
npm install -g @wangjs-jacky/j-skills

# Or use npx (no installation required)
npx @wangjs-jacky/j-skills <command>

npm Package

This package is published to npm as @wangjs-jacky/j-skills.

# View package info
npm info @wangjs-jacky/j-skills

Commands

link - Register Skills

# Link current directory (must contain skill.md)
j-skills link

# Link specific directory
j-skills link /path/to/skill

# List all linked skills
j-skills link --list

# Unlink a skill
j-skills link --unlink <skill-name>

install - Distribute Skills

# Interactive installation (select environments)
j-skills install <skill-name>

# Install to current project
j-skills install <skill-name>

# Install globally
j-skills install <skill-name> --global

# Install to specific environments
j-skills install <skill-name> --env claude-code,cursor

# Verbose output
j-skills install <skill-name> --verbose

uninstall - Remove Skills

# Interactive uninstallation
j-skills uninstall <skill-name>

# Global uninstallation
j-skills uninstall <skill-name> --global

# Skip confirmation
j-skills uninstall <skill-name> --yes

list - View Skills

# List project-level skills
j-skills list

# List global skills
j-skills list --global

# List all skills
j-skills list --all

# Search skills
j-skills list --search <keyword>

# JSON output
j-skills list --json

config - Manage Settings

# View configuration
j-skills config

# Set default environments
j-skills config set defaultEnvironments '["claude-code","cursor"]'

# Set auto-confirm
j-skills config set autoConfirm true

Supported Agents (35+)

j-skills follows the Vercel Skills Specification:

| Agent | Project Path | Global Path | |-------|--------------|-------------| | Claude Code | .claude/skills/ | ~/.claude/skills/ | | Cursor | .cursor/skills/ | ~/.cursor/skills/ | | OpenCode | .agents/skills/ | ~/.config/opencode/skills/ | | Cline | .cline/skills/ | ~/.cline/skills/ | | Continue | .continue/skills/ | ~/.continue/skills/ | | Windsurf | .windsurf/skills/ | ~/.codeium/windsurf/skills/ | | GitHub Copilot | .agents/skills/ | ~/.copilot/skills/ | | Augment | .augment/skills/ | ~/.augment/skills/ | | Roo Code | .roo/skills/ | ~/.roo/skills/ | | Gemini CLI | .agents/skills/ | ~/.gemini/skills/ |

  • Amp / Kimi CLI / Replit - .agents/skills/
  • Antigravity - .agent/skills/
  • OpenClaw - skills/
  • CodeBuddy - .codebuddy/skills/
  • Command Code - .commandcode/skills/
  • Crush - .crush/skills/
  • Droid - .factory/skills/
  • Goose - .goose/skills/
  • Junie - .junie/skills/
  • iFlow CLI - .iflow/skills/
  • Kilo Code - .kilocode/skills/
  • Kiro CLI - .kiro/skills/
  • Kode - .kode/skills/
  • MCPJam - .mcpjam/skills/
  • Mistral Vibe - .vibe/skills/
  • Mux - .mux/skills/
  • OpenHands - .openhands/skills/
  • Pi - .pi/skills/
  • Qoder - .qoder/skills/
  • Qwen Code - .qwen/skills/
  • Trae - .trae/skills/
  • Zencoder - .zencoder/skills/
  • Neovate - .neovate/skills/
  • Pochi - .pochi/skills/
  • AdaL - .adal/skills/

Web GUI

j-skills includes a visual interface for easier management:

# Start development servers
pnpm dev:all

# Or separately:
pnpm dev:server  # Backend :3001
pnpm dev:web     # Frontend :5173

Features:

  • Visual skill browser
  • One-click install/uninstall
  • SKILL.md preview
  • Source folder monitoring
  • Settings management

Desktop App

j-skills is also available as a native desktop application powered by Tauri.

Installation

Download the latest release for your platform:

Build from Source

# Prerequisites: Rust and Xcode Command Line Tools
pnpm install
pnpm build:macos

Features

  • Native desktop experience
  • Offline support
  • Better performance with Rust backend
  • Future: System tray integration
  • Future: File watcher for automatic skill syncing

Skill Format

Create a skill.md file in your skill directory:

---
name: my-skill
description: Brief description of what this skill does
---

# My Skill

Detailed instructions for the AI agent...

## Usage

1. First step
2. Second step

Configuration

Config file: ~/.j-skills/config.json

{
  "defaultEnvironments": ["claude-code", "cursor"],
  "autoConfirm": false
}

Comparison

| Feature | j-skills | Manual Copy | Vercel Skills | |---------|----------|-------------|---------------| | Central Registry | ✅ | ❌ | ❌ | | One-command Install | ✅ | ❌ | ✅ | | Hot-Reload | ✅ | ❌ | ❌ | | Multi-environment | ✅ | ❌ | ✅ | | Visual GUI | ✅ | ❌ | ❌ | | 35+ Agents | ✅ | - | ✅ |

License

MIT

Resources