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

@hyperdrive.bot/paseo-extension-sdk

v0.3.39

Published

MIT SDK for building Hyperpaseo extensions. Extensions run arms-length (separate extension-host process / sandboxed webview) and talk to the host over RPC — they never link the AGPL app.

Readme

@hyperdrive.bot/paseo-extension-sdk

MIT-licensed SDK for building Hyperpaseo extensions.

This package is the contract between an extension and the host app — a VS Code–style plugin model. It contains only interfaces, the manifest schema, and a thin RPC client. It does not import any host (AGPL) code.

Why this is a separate package (the licensing boundary)

The Hyperpaseo desktop app is AGPL-3.0. Extensions are not derivative works of it because they run arms-length:

  • extension logic runs in a separate extension-host process (not in the app),
  • extension UI runs in a sandboxed webview,
  • both communicate with the host only over the RPC contract defined here.

An extension depends on @hyperdrive.bot/paseo-extension-sdk (MIT) and the wire protocol — never on the app's source. Therefore an extension may be licensed however its author wants, including closed-source and paid. (Same boundary VS Code uses between Code-OSS and its extension ecosystem.)

Do NOT import host internals into an extension. The moment an extension links the AGPL app in-process, it becomes a derivative work and must be AGPL. Talk to the host only through the HostApi defined here.

Anatomy of an extension

my-extension/
  package.json            # name, version
  hyperpaseo.json         # the manifest (contributions)
  dist/extension.js       # runs in the extension-host (Node) — exports activate()
  ui/index.html           # optional sandboxed webview UI
// extension.ts — runs in the extension-host process
import type { ExtensionContext } from "@hyperdrive.bot/paseo-extension-sdk";

export async function activate(ctx: ExtensionContext): Promise<void> {
  ctx.registerCommand("hello.ping", async () => {
    const agents = await ctx.host.agents.list();
    await ctx.host.ui.showNotification({ body: `You have ${agents.length} agents.` });
  });
}

export function deactivate(): void {}

See src/ for the full surface: manifest, host-api, activation, rpc.