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

pulser-cli

v0.3.1

Published

Diagnose and fix your Claude Code skills — based on Anthropic's internal principles

Readme

pulser

Take your skill's pulse.

Diagnose and fix your Claude Code skills — based on Anthropic's published principles from "Building Claude Code: How We Use Skills".

$ npx pulser

  _╭─╮_╭─╮_╭─╮_______
       pulser v0.1.0
  Diagnose your Claude Code skills

  ╭──────────────────────────────────────────────╮
  │  cross-verified-research  research (58%)  ✓  │
  │  ✓ All rules passed                          │
  ╰──────────────────────────────────────────────╯
  ╭──────────────────────────────────────────────────────╮
  │  reasoning-tracer  analysis (73%)                    │
  │  ⚠ GOTCHAS        No Gotchas section found           │
  │  ⚠ ALLOWED-TOOLS  Bash in allowed-tools              │
  ╰──────────────────────────────────────────────────────╯

  💊 Rx #1 — reasoning-tracer
  [GOTCHAS] Add Gotchas section
    Why: Anthropic's highest-ROI improvement
    Suggestion:
    ## Gotchas
    1. Do not modify files — this skill is read-only
    2. Check git status before analyzing
    3. Keep output under 3000 lines

What it does

Pulser scans your SKILL.md files and checks them against 8 diagnostic rules derived from Anthropic's internal skill-building principles:

| Rule | What it checks | |------|---------------| | frontmatter | Required name and description fields | | description | Trigger keywords, "Use when" pattern, length | | file-size | SKILL.md under 500 lines | | gotchas | Gotchas section with failure patterns | | allowed-tools | Tool restrictions appropriate for skill type | | structure | Supporting files for large skills | | conflicts | Trigger keyword overlap between skills | | usage-hooks | Skill usage logging hook installed |

Each skill is auto-classified by type (analysis, research, generation, execution, reference) with confidence scoring, and prescriptions are tailored to the detected type.

Install

npm install -g pulser-cli

Run

pulser

Usage

# Scan default path (~/.claude/skills/)
npx pulser

# Scan a specific directory
npx pulser ./my-skills/

# Scan a single skill
npx pulser --skill reasoning-tracer

# JSON output (for CI/automation)
npx pulser --format json

# Markdown report
npx pulser --format md

# Treat warnings as errors
npx pulser --strict

# Include experimental rules
npx pulser --all

# Disable animation (non-TTY)
npx pulser --no-anim

Exit Codes

| Code | Meaning | |------|---------| | 0 | All rules passed | | 1 | Errors found | | 2 | Warnings found (with --strict) |

The 7 Principles

Based on Anthropic's published guidance:

  1. Don't state the obvious — Skills should teach Claude things it doesn't already know
  2. Add Gotchas sections — Document failure patterns to prevent repeated mistakes
  3. Use the file system — Split large skills into supporting files
  4. Don't put the agent on rails — Give information, not rigid scripts
  5. Design the setup process — Config files for skill initialization
  6. Description is for the model — Write trigger conditions, not human summaries
  7. Store scripts, generate code — Pre-built scripts + Claude assembles

Patient Monitor TUI

When running in a TTY terminal, pulser displays a hospital-style patient monitor with real-time waveform animation:

  • Green ECG waveform — Skills being scanned
  • Green capnography — Rules pass/warn/fail counts
  • Cyan plethysmograph — Health score
  • Yellow respiratory — Prescription count
  • Flatline — No skills found
  • Erratic — Errors detected

Disable with --no-anim or pipe to a file.

Roadmap

  • [x] v0.1 — Read-only diagnostics + prescriptions + TUI
  • [ ] v0.5--fix auto-apply with backup/undo
  • [ ] v1.0--install-hooks + community launch

License

MIT — whynowlab