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

@versatly/skillbench

v2.0.0

Published

CLI benchmark system for tracking skill versions, scoring performance, and comparing improvements

Readme

@versatly/skillbench

Self-improving skill ecosystem for AI agents.

Track skill versions, benchmark performance, compare improvements, and get signals on what to fix next.

Part of the ClawVault ecosystem | tasktime | ClawHub

Install

npm i -g @versatly/skillbench

Quick Start

# Track a skill version
skillbench use [email protected]

# Run tests
skillbench test [email protected] --init  # Create test suite
skillbench test [email protected]         # Run tests

# Check scores
skillbench score

Commands (18 total)

Core

skillbench use [email protected]           # Set active skill version
skillbench record "Task" --success    # Record benchmark (auto-pulls from tasktime)
skillbench score                      # Show scoreboard with grades
skillbench compare v1.0.0 v1.1.0      # Compare versions
skillbench skills                     # List tracked skills

Testing

skillbench test [email protected]           # Run smoke test
skillbench test [email protected] --init    # Create test suite template
skillbench test [email protected] --suite full  # Run named suite

Analysis

skillbench health                     # Health report with alerts
skillbench improve                    # Suggestions for weakest skill
skillbench trend tasktime --days 30   # Performance over time
skillbench leaderboard                # Multi-agent comparison

Monitoring

skillbench watch --once               # Run all test suites
skillbench watch --interval 300       # Continuous monitoring
skillbench baseline skill --set       # Set performance baseline
skillbench baseline --check           # Check baselines (CI-friendly)

CI/CD

skillbench ci                         # Run tests + baselines
skillbench ci --json                  # JSON output for automation
skillbench badge                      # Generate shields.io badges
skillbench schedule --interval 60     # Generate cron config

Export

skillbench export --format markdown   # Export report
skillbench dashboard                  # Generate HTML dashboard
skillbench sync --clawhub             # Import from ClawHub
skillbench sync --vault               # Sync to ClawVault

Grading System

| Grade | Score | Meaning | |-------|-------|---------| | 🏆 A+ | 95-100 | Elite | | ✅ A | 85-94 | Excellent | | 👍 B | 70-84 | Good | | ⚠️ C | 50-69 | Needs work | | ❌ D | <50 | Broken |

GitHub Actions

Copy examples/github-action.yml to .github/workflows/skillbench.yml:

name: SkillBench CI
on: [push, pull_request]
jobs:
  skillbench:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with:
          node-version: '20'
      - run: npm i -g @versatly/skillbench
      - run: skillbench ci --json
      - run: skillbench baseline --check

Test Suites

Create YAML test suites in ~/.skillbench/suites/:

# ~/.skillbench/suites/myskill-smoke.yaml
name: My Skill Smoke Test
skill: myskill
version: "1.0.0"
steps:
  - name: "Help available"
    command: "myskill --help"
    expect_exit: 0
    timeout: 5s

Related

License

MIT