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

@openagentsinc/nip90

v0.1.1

Published

Thin OpenAgents workspace surface for NIP-90 Data Vending Machine protocol helpers.

Readme

@openagentsinc/nip90

Thin OpenAgents workspace surface for NIP-90 Data Vending Machine protocol helpers.

The implementation is intentionally re-exported from the nostr-effect package:

export * from "nostr-effect/nip90"
export * from "./lbr.js"

Do not rebuild Nostr event, tag, kind, or validation primitives in this package. Extend nostr-effect first, then expose the shared surface here for OpenAgents apps that need a workspace package import.

The ./lbr export is an OpenAgents-specific NIP-LBR wrapper over the shared labor primitives. It keeps the relay payload ref-only for the labor request, quote, acceptance, and result lifecycle described in docs/nips/LBR.md.

Contract

This package covers protocol-only behavior:

  • job request kinds 5000-5999
  • result kinds 6000-6999
  • feedback kind 7000
  • OpenAgents labor-market request kinds 5934 code task, 5935 review, and 5936 document work, with result kinds 6934-6936
  • NIP-LBR agentic-coding request/result helpers for 5934/6934, quote and acceptance feedback on 7000, and decode-time rejection of raw prompts, private paths, credentials, and payment material
  • NIP-DS dataset listing kind 30404
  • NIP-DS dataset offer kind 30406
  • DS-DVM dataset access request/result kinds 5960/6960
  • i, param, output, relays, bid, amount, and bolt11 tags
  • labor input refs, acceptance criteria, compliant-usage policy refs, expected artifact descriptors, and result artifact refs
  • dataset d, title, x, published_at, delivery, price, payment, and linked listing/offer a tags
  • feedback statuses payment-required, processing, success, error, and partial
  • Effect Schema-backed event validation, typed malformed-event errors, and SHA-256 digest verification for delivered bundles

Historical contract reference:

  • f5919c766^:crates/nostr/core/src/nip90/
  • f5919c766^:crates/nostr/nips/DS.md

NIP-DS CLI

Use the script when an agent needs to turn a public-safe redacted bundle into a dataset listing and offer:

bun apps/openagents.com/scripts/nip-ds.ts draft \
  --file ./bundle.json \
  --title "Redacted conversation bundle" \
  --d redacted-conversation-bundle \
  --price-sats 50

For the integrated scoped-relay proof:

bun apps/openagents.com/scripts/nip-ds.ts smoke \
  --relay https://relay.openagents.com

The script signs and publishes a 30404 listing, 30406 offer, 5960 access request, and 6960 access result, then reads them back and verifies the delivered bundle digest. It does not move sats or publish private datasets.

Verification

bun run --cwd packages/nip90 typecheck
bun run --cwd packages/nip90 test
bun run --cwd apps/nostr-relay test
bun test apps/pylon/tests/nip90-import.test.ts
cd apps/openagents.com/workers/api && bunx vitest run src/nip90-import.test.ts