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

@napplet/skills

v0.2.0

Published

Agent skills (design / build / test) that let a coding agent create a napplet end-to-end, plus a napplet-skills installer for Claude Code, Cursor, Windsurf, Codex/Amp, Gemini, and Copilot

Readme

@napplet/skills

Agent skills that let a coding agent design, build, and test a napplet end-to-end — plus a napplet-skills installer that drops them into whatever location your agent reads.

A napplet is a sandboxed Nostr iframe app (NIP-5D). These skills carry the exact, verified API surface and protocol constraints an agent needs so that one well-scoped prompt produces a working, conformant napplet.

The skills

| Skill | When | Covers | | --- | --- | --- | | design-napplet | First — plan before code | Sandbox/CSP constraints, choosing NAP capabilities, hard-vs-optional requirements, responsive layout for any viewport (full-screen → tiny widget), the build spec to hand off. | | build-napplet | Implementation | @napplet/shim + @napplet/sdk, the Vite manifest plugin, relay/storage/identity/inc/resource/config/theme, capability gating via shell.supports(), the single-file artifact rule. | | test-napplet | Before publishing | Protocol conformance via napplet-conformance (real Chromium + reference shell), interpreting failures, the runtime guard, CI wiring. |

Each skill is a self-contained SKILL.md with YAML frontmatter (name, description) — the format Claude Code, Cursor, and most agents consume.

Install routes

No build step needed — the CLI ships the Markdown and places it for you.

# one-off, no install:
npx @napplet/skills install --to claude

| --to | Destination | Layout | | --- | --- | --- | | claude | .claude/skills/<skill>/SKILL.md | one folder per skill | | claude-user | ~/.claude/skills/<skill>/SKILL.md | global, all projects | | cursor | .cursor/rules/<skill>.mdc | one rule file per skill | | windsurf | .windsurf/rules/<skill>.md | one rule file per skill | | agents | AGENTS.md | appended block (Codex, Amp, Jules, generic) | | gemini | GEMINI.md | appended block (Gemini CLI) | | copilot | .github/copilot-instructions.md | appended block |

appendDoc targets are idempotent — re-running replaces the managed <!-- @napplet/skills:start -->…<!-- @napplet/skills:end --> block, never duplicating it. The rest of the file is untouched.

Custom locations

napplet-skills install --dir vendor/skills        # writes <dir>/<skill>/SKILL.md
napplet-skills install --out CONTRIBUTING.md       # appends the managed block
napplet-skills install --to claude --symlink       # symlink instead of copy
napplet-skills print build-napplet > skill.md      # raw markdown to stdout

Install a single skill by naming it:

napplet-skills install build-napplet --to gemini

CLI

napplet-skills list                       List shipped skills
napplet-skills print [skill]              Print SKILL.md to stdout (all, or one)
napplet-skills install [skill] [options]  Install into an agent location

Programmatic API

import { listSkills, readSkill, install } from '@napplet/skills';

listSkills();                      // [{ name, description, path }, …]
readSkill('build-napplet');        // full SKILL.md source
install({ to: 'claude' });         // → InstallResult[]
install({ dir: 'vendor/skills' }); // custom skillDir

License

MIT