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

@zanii/sla

v0.1.1

Published

Machine-verifiable service agreements between agents - co-signed terms (scope, window, volume, max-gap uptime proxy) with compliance computed deterministically from receipts. The per-agent hash chain closes the omission hole: a broken prev-link is an INCO

Readme

@zanii/sla

Machine-verifiable service agreements between agents. Provider and client co-sign terms — what service (a target scope), over what window, how much (min/max actions), how continuously (max_gap_ms, an uptime proxy) — and then compliance is computed from receipts, not argued about. Same terms + same receipts → same verdict for everyone, and every breach cites its evidence. Pair with @zanii/escrow: a breach verdict is refund evidence.

npm install @zanii/sla @zanii/core @zanii/payments
import { buildSlaBody, signSla, assembleSla, assessCompliance } from '@zanii/sla';

const body = buildSlaBody({
  provider: worker.did, client: buyer.did, scope: 'feed.*',
  window: { start, end },
  commitments: { min_actions: 100, max_gap_ms: 15 * 60_000 },
  price: { amount: '499.00', currency: 'USD' },   // informational — ties to an escrow
  createdAt: now,
});
const sla = assembleSla(body, [signSla(body, worker.did, workerKey), signSla(body, buyer.did, buyerKey)]);

// hand in the provider's CONSECUTIVE chain segment covering the window:
const report = assessCompliance(sla, receipts, { asOf: now }); // asOf: fair mid-window checks
report.ok;        // no breaches
report.breaches;  // [{ kind, detail, receipt? }] — each cites the evidence
report.metrics;   // { actions, max_gap_ms }

Python: from zanii.sla import build_sla_body, assess_compliance, ... — byte-identical JCS objects and hashes.

The property that makes the metrics honest

Counting receipts is worthless if the provider can omit the bad hour. Zanii receipts form a per-agent hash chain (prev links), so completeness is provable: assessCompliance verifies the slice is consecutive in the provider's chain — a broken link is an INCOMPLETE_RECORD breach, not a silently wrong count. Trimming the ends doesn't help either: it shows as fewer actions and bigger edge gaps (gaps are measured to the window boundaries, not just between receipts).

Breach kinds: INVALID_RECEIPT · INCOMPLETE_RECORD · TOO_FEW_ACTIONS · TOO_MANY_ACTIONS · MAX_GAP_EXCEEDED.

The limit, stated up front

Receipts prove what was recorded — an action taken entirely off the rails is the credential-custody problem, not an SLA one. A gap breach proves silence on the ledger, which the SLA defines as breach; that definition is the parties' agreement, not a law of nature.