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

windy-drops-sdk

v0.1.1

Published

TypeScript SDK + CLI for publishing drops to the Windy Drops registry. WD-4..WD-10 of DNA_STRAND_MASTER_PLAN.md.

Readme

windy-drops-sdk

TypeScript SDK + CLI for authoring and publishing Windy Drops.

Not published yet. This package is not on npm as of 2026-08-10; the command below is what the install will be once it ships. Until then, run the CLI from a checkout of sneakyfree/windy-drops.

npm install -g windy-drops-sdk
windy-drops --help

Commands

| Command | What it does | Strand | |---|---|---| | new --type <type> <path> | Scaffold a starter drop from examples/<type>-minimal/ | WD-4 (this) | | validate <path> | Validate SKILL.md frontmatter against the schema | WD-5 | | bundle <path> | Produce a deterministic .zip + SHA-256 digest | WD-6 | | sign <path> | Sign manifest with the author's Eternitas Passport (ES256) | WD-7 | | publish <path> | Validate → bundle → sign → upload to R2 → POST to registry | WD-8 | | withdraw <drop-id> | Hide from search (existing installs keep working) | WD-9 | | fork <source-drop-id> <new-id> | Clone locally + rewrite manifest + register lineage | WD-10 |

Commands marked future-strand exit code 2 with a clear message until that strand lands.

Scaffold

windy-drops new --type control-panel-template ./my-dashboard
# ✓ scaffolded control-panel-template drop at /.../my-dashboard
# Next steps:
#   1. Edit /.../my-dashboard/SKILL.md (set author + id)
#   2. windy-drops validate /.../my-dashboard
#   3. windy-drops publish /.../my-dashboard

The 6 v1 reserved drop types each ship a starter scaffold:

  • control-panel-template
  • skill
  • tool
  • theme
  • voice-pack
  • workflow

Library API

import { scaffold } from "windy-drops-sdk";

const result = await scaffold({ type: "skill", path: "./my-skill" });
console.log(result.targetDir, result.filesCopied);

Parity with the Python SDK

The Python sibling (windy-drops, also unpublished) has the same CLI surface. A drop scaffolded by one is byte-identical to one scaffolded by the other; a drop published by one is indistinguishable to the registry. Cross-SDK byte-identity is enforced by the WD-11 conformance harness.

Strand reference

This package is owned by strands WD-4..WD-10 in docs/DNA_STRAND_MASTER_PLAN.md. Each strand owns one subcommand (or related set).

License

MIT