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

@wowok/skills

v1.1.9

Published

WoWok AI Skills for Claude and other AI assistants - Helping AI use WoWok MCP tools correctly

Readme

WoWok Skills

WoWok AI Skills for Claude Code, OpenAI Codex, Trae IDE, CodeBuddy, and other AI assistants — Helping AI use WoWok MCP tools correctly.

Supported AI Clients

| Client | Skills Directory | Format | |--------|-----------------|--------| | Claude Code | .claude/skills/ | SKILL.md (native) | | OpenAI Codex | .codex/skills/ | SKILL.md (native) | | Trae IDE | .agents/skills/ | SKILL.md (native) | | CodeBuddy | .codebuddy/skills/ | SKILL.md (native) | | Cursor IDE | .cursor/rules/ | .mdc (frontmatter adapted) | | GitHub Copilot | .github/prompts/ | .prompt.md (plain markdown) |

Format notes: For Cursor, the YAML frontmatter is adapted to description + alwaysApply. For Copilot, frontmatter is stripped — pure Markdown instructions. Codex follows the Agent Skills open standard natively. All other clients use the native SKILL.md format directly.

Overview

WoWok Skills provide structured guidance for AI assistants to effectively use WoWok's blockchain collaboration tools. Built on Claude Code's progressive disclosure skills system, they solve common AI challenges:

  • Complex system building — Dependency chains, build order, step-by-step patterns
  • Tool usage failures — Correct parameter formats, tool selection, error recovery
  • Safety & authorization — User confirmation for important operations

How It Works

Each skill is a SKILL.md file with YAML frontmatter. AI clients discover them from their skills directory at session start:

npm install -g @wowok/skills
       │
       └── postinstall ──→ Copies SKILL.md to ~/.claude/skills/wowok-*/
                            AI discovers them on next session ✅

# For other clients, set the WOWOK_SKILLS_TARGETS env var:
WOWOK_SKILLS_TARGETS=claude,agents npm install -g @wowok/skills
       │
       └── postinstall ──→ Copies to ~/.claude/skills/ AND ~/.agents/skills/

Two loading modes:

| Mode | Skills | Behavior | |------|--------|----------| | Always | wowok-tools, wowok-safety | Metadata always in prompt (~100 tokens each). AI auto-loads full content when needed. | | On-demand | wowok-provider, wowok-arbitrator, wowok-order, wowok-messenger, wowok-guard, wowok-machine | AI matches description to task. Only loaded when relevant. |

Quick Start

1. Prerequisites

Setup WoWok Agent (MCP Server) in your Claude Code MCP configuration:

{
  "mcpServers": {
    "wowok": {
      "command": "npx",
      "args": ["-y", "@wowok/agent-mcp"]
    }
  }
}

See WoWok Agent for more details.

2. Install (Personal)

# Claude Code (default):
npm install -g @wowok/skills

# Multiple clients (e.g., Claude + Trae):
WOWOK_SKILLS_TARGETS=claude,agents npm install -g @wowok/skills

# All supported clients:
WOWOK_SKILLS_TARGETS=claude,codex,agents,codebuddy npm install -g @wowok/skills

This copies skills to the respective ~/.*/skills/ directories. They will be available in your next session.

3. Install (Project — Team Sharing)

npm install -g @wowok/skills
cd your-project

# Claude Code (default):
wowok-skills init

# OpenAI Codex:
wowok-skills init --target codex

# Trae IDE:
wowok-skills init --target agents

# All clients:
wowok-skills init --target all

This copies skills to the project's .*/skills/ directories. Commit to git for team sharing.

Managing Skills

Enable / Disable Individual Skills

# Disable a specific skill:
rm -rf ~/.claude/skills/wowok-guard

# Re-enable it:
npm install -g @wowok/skills

Check What's Installed

wowok-skills list
wowok-skills get wowok-provider

Update

npm update -g @wowok/skills

Uninstall

# Remove from personal scope:
npm uninstall -g @wowok/skills

# Remove from project scope:
cd your-project
wowok-skills uninit

CLI Reference

| Command | Scope | Description | |---------|-------|-------------| | wowok-skills list | — | List all available skills | | wowok-skills get <name> | — | Show skill details | | wowok-skills role <role> | — | List skills by role | | wowok-skills recommend <intent> | — | Recommend skills by intent | | wowok-skills init | Project | Install to .claude/skills/ (default) | | wowok-skills init --target codex | Project | Install to .codex/skills/ (Codex) | | wowok-skills init --target agents | Project | Install to .agents/skills/ (Trae) | | wowok-skills init --target cursor | Project | Install to .cursor/rules/ (Cursor) | | wowok-skills init --target copilot | Project | Install to .github/prompts/ (Copilot) | | wowok-skills init --target all | Project | Install to all 6 clients | | wowok-skills uninit | Project | Remove from .claude/skills/ (default) | | wowok-skills uninit --target all | Project | Remove from all clients |

Note: init / uninit require @wowok/skills to be globally installed first.

Programmatic API

import { getSkills, getSkillByName } from '@wowok/skills';

const skills = getSkills();
const providerSkill = getSkillByName('wowok-provider');

Available Skills

| Skill | Purpose | Role | Loading | |-------|---------|------|---------| | wowok-provider | Service provider guide (create Service, Machine, Allocators, handle orders) | Service Provider (Merchant) | On-demand | | wowok-arbitrator | Arbitration service guide (create Arbitration, handle disputes, voting) | Arbitrator | On-demand | | wowok-order | Order lifecycle management (place orders, track progress, arbitration) | Customer | On-demand | | wowok-messenger | Encrypted messaging (E2E communication, WTS evidence, conversation management) | All Roles | On-demand | | wowok-guard | Guard design mastery (programmable trust rules) | All Roles | On-demand | | wowok-machine | Machine workflow design (state machines, progress tracking) | Service Provider | On-demand | | wowok-output | Output processing (address resolution, name mapping, amount formatting) | All Roles | Always | | wowok-tools | MCP tool usage mastery (13 tools, schema references) | All Roles | Always | | wowok-safety | Safety protocol (dry-run → confirm → execute) | All Roles | Always |

Related Projects

Development

npm install
npm run build
npm run watch

License

MIT