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

@shadoprizm/skillforge

v0.3.2

Published

AI-powered CLI that generates complete, publish-ready OpenClaw agent skills from natural language descriptions

Readme

SkillForge

Describe your skill. Ship it in seconds.

SkillForge is an AI-powered CLI that generates complete, publish-ready OpenClaw agent skills from natural language descriptions.

Installation

npm install -g @shadoprizm/skillforge

Quick Start

# Generate a skill from a description
skillforge "Monitor Hacker News for AI tool launches and email me daily summaries"

# Specify output directory
skillforge "Build a GitHub PR reviewer notifier" --output ./gh-pr-skill

# Specify scripting language
skillforge "Scan websites for security issues" --output ./sec-skill --lang python

# Pro features (requires API key)
skillforge "Build a daily weather briefing" --pro --api-key FAKE_EXAMPLE_KEY

Audit Existing Skills

Evaluate any OpenClaw skill for quality, structure, completeness, and safety:

# Audit a local skill directory (default table output)
skillforge audit ./my-skill

# JSON output for CI/CD pipelines
skillforge audit ./my-skill --format json

# Markdown report for documentation
skillforge audit ./my-skill --format markdown

# Pro: AI-powered deep analysis
skillforge audit ./my-skill --pro --api-key sk_pro_xxx

The audit checks 5 categories and produces a scored report with a letter grade:

| Category | Weight | What It Checks | |----------|--------|----------------| | Structure | 20% | SKILL.md, skill.json, file organization | | Completeness | 25% | Required sections, metadata fields | | Quality | 25% | Description clarity, workflow detail, examples | | Safety | 20% | Dangerous patterns, hardcoded secrets | | Compatibility | 10% | Category validity, tool references, semver |

Features

  • AI-Powered Generation — Uses advanced language models to understand your intent
  • Skill Auditing — Evaluate existing skills for quality, structure, completeness, and safety
  • Spec-Compliant Output — Every skill follows the OpenClaw AgentSkills specification exactly
  • No API Key Required — Generate complete skill scaffolds instantly, no account needed
  • Pro Tier ($9/mo) — Script scaffolding, API references, one-click publish
  • Multi-Provider Support — Works with ZAI, OpenAI, OpenRouter, and Qwen

No API Key Required

SkillForge works out of the box with zero configuration. When no API key is detected, it uses template-based generation to create a complete, well-structured skill scaffold from your description.

The template mode generates:

  • Proper OpenClaw SKILL.md with triggers, workflow, and tools sections
  • Valid skill.json with correct metadata and tags
  • Well-organized structure following the AgentSkills specification

This means you can start building skills immediately — no sign-ups, no API keys, no costs.

Configure AI (Optional)

For AI-powered generation with enhanced quality and Pro features, set one environment variable before running SkillForge:

# Option 1: ZAI (Recommended - Free via OpenClaw)
export ZAI_API_KEY=your_zai_api_key

# Option 2: OpenAI
export OPENAI_API_KEY=sk-xxxx

# Option 3: OpenRouter
export OPENROUTER_API_KEY=sk-or-xxxx

# Option 4: Qwen/Alibaba
export QWEN_API_KEY=your_qwen_api_key

Priority order: ZAI → OpenAI → OpenRouter → Qwen

When an API key is detected, SkillForge automatically:

  • Uses the appropriate provider and model
  • Enables Pro tier features (scripts, references, README)
  • Generates higher-quality, AI-optimized skill definitions

How It Works

  1. Describe — Type a natural language description of your skill
  2. Generate — SkillForge's AI creates a complete, spec-compliant skill
  3. Ship — Copy to your OpenClaw skills directory and start using it

Output Structure

Free Tier

my-skill/
├── SKILL.md     # Full skill definition
└── skill.json   # ClawHub metadata

Pro Tier

my-skill/
├── SKILL.md
├── skill.json
├── README.md
├── references/
│   └── <service>-api.md   # Auto-generated API reference
└── scripts/
    ├── main.ts            # Implementation boilerplate
    └── tools.ts           # Helper utilities

Configuration

# Set your API key for Pro features
skillforge config:set-api-key FAKE_EXAMPLE_KEY

# Set default language
skillforge config:set-language python

# Set default output directory
skillforge config:set-output ./my-skills

# View current config
skillforge config

Requirements

  • Node.js 18+
  • npm or yarn

Pricing

| Tier | Price | Features | |------|-------|----------| | Free | $0/mo | SKILL.md + skill.json (template mode, no API key needed) | | Pro | $9/mo | Scripts, API references, publish (requires API key) | | Team | $29/mo | Templates, sharing, analytics |

Documentation

License

MIT © 2026 North Star Holdings


Built with Astra Web Dev