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

@kirkelabs/open-agent-access-creative-rights

v0.1.0

Published

Creative passport helpers for binding rights metadata, licensing terms, provenance references, and Open Agent Access receipts.

Readme

@kirkelabs/open-agent-access-creative-rights

Creative rights helpers for Open Agent Access.

This package binds creator/asset metadata, licensing terms, provenance references, and registry references into OAA policies and receipts. It is meant for use cases such as samples, stems, loops, vocals, datasets, images, articles, and other creative assets that need machine-readable permission and payment terms.

It does not create copyright, prove final legal ownership, replace PRS/PPL or other collective-management organisations, or operate as a marketplace.

Install

npm install @kirkelabs/open-agent-access-creative-rights @kirkelabs/open-agent-access-core

Example

import {
  createCreativeAssetAccessPolicy,
  createCreativeReceiptEvidence
} from "@kirkelabs/open-agent-access-creative-rights";

const passport = {
  version: "0.1",
  protocol: "open-agent-access",
  kind: "creative-asset-passport",
  asset: {
    id: "manchester-loop-001",
    title: "Manchester Perc Loop 001",
    type: "loop",
    hash: "sha256:example"
  },
  rights: {
    claimant: { name: "Example Producer", wallet: "ALGOD_ADDRESS" },
    claims: ["sound-recording", "sample-pack"],
    authorshipBasis: "original"
  },
  policy: {
    deniedUses: ["ai-training"],
    aiTraining: { allowed: false },
    licenseOptions: [
      {
        id: "commercial-sample",
        decision: "charge",
        purposes: ["creative-licensing"],
        uses: ["commercial-sample"],
        price: { amount: "25", currency: "GBP", unit: "license" }
      }
    ]
  },
  legalNotice: "This passport records a rights claim and license terms. It is not a copyright registration."
} as const;

const policy = createCreativeAssetAccessPolicy(passport, {
  origin: "https://example-collective.test"
});

const receiptEvidence = createCreativeReceiptEvidence(passport);

By default, license rules are emitted on license-specific paths such as /creative-assets/manchester-loop-001/licenses/commercial-sample. This avoids first-match ambiguity between free, paid, review, and denied licenses.

Framing

Open Agent Access is the policy, payment, and receipt rail.

  • RSL-style terms can be referenced through registry.rsl.
  • C2PA/content credentials can be referenced through provenance.
  • Algorand can anchor receipts or settlement references through registry.algorand.
  • Rights societies and marketplaces remain external systems referenced through identifiers and URLs.

That keeps OAA useful without pretending to be a rights society, marketplace, DRM system, or copyright registry.