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

@makerchecker/obligations

v1.2.0

Published

Deterministic, offline mapping of a signed MakerChecker audit bundle to named regulatory obligations (21 CFR Part 11, EU Annex 11, GAMP 5, HIPAA 164.312). Emits MET / NOT_EVIDENCED / NOT_APPLICABLE per clause with citing seqs.

Readme

⚖️ @makerchecker/obligations

Prove your AI agent met the regulation — clause by clause, straight from the evidence.

mc obligations maps a signed MakerChecker audit bundle to named regulatory obligations (21 CFR Part 11, EU Annex 11, GAMP 5, HIPAA 164.312), emitting MET / NOT_EVIDENCED / NOT_APPLICABLE per clause with the exact audit seq numbers that satisfy it. No LLM, no network, no producer access.

npm License

[!TIP] See the frameworks it maps — no bundle required:

npx @makerchecker/obligations list-profiles

The mapping is machine-checkable code an examiner can run against a real run's evidence, not prose in a PDF.

Profiles

| Profile id | Framework | |---|---| | part-11 | 21 CFR Part 11 — Electronic Records; Electronic Signatures | | annex-11 | EU GMP Annex 11 — Computerised Systems | | gamp5 | GAMP 5 / ALCOA+ data integrity | | hipaa-164-312 | HIPAA Security Rule — Technical Safeguards (45 CFR 164.312) |

Each profile is a JSON file in profiles/ binding a clause to the exact audit event types and refusal codes that evidence it. Profiles are versioned and PR-able; adding a framework is a pull request.

Use

mc-obligations list-profiles
mc-obligations check --bundle run-evidence.json --profile part-11
# pin the instance key, get machine-readable output, or fail on gaps:
mc-obligations check --bundle run-evidence.json --profile annex-11 --key instance-pubkey.pem --json
mc-obligations check --bundle run-evidence.json --profile gamp5 --strict
EU GMP Annex 11 (Computerised Systems)
Bundle: chain VERIFIED (8 events)

  ✓ 4  MET
      Validation
      note: Partial: tamper-evidence is provided; lifecycle validation (URS/FS/IQ/OQ/PQ) is the operator's process — see the GxP validation kit.
  ✓ 9  MET  (seq 1, 7, 3)
      Audit Trails
      note: Every agent action and governance decision is recorded in the hash-chained log.
  ✓ 12.1  MET  (seq 4)
      Security — access restricted to authorised persons
  ...
  6 met, 0 not-evidenced, 0 not-applicable

  Scope: this profile assesses 5 of 6 mapped clauses in full; 1 is in part the operator's process, not evidenced by this tool.
  Clauses of the framework not mapped in this profile are not assessed here.

Clause titles carry the regulation's own words; how MakerChecker evidences the clause (and any Partial caveat about what remains the operator's process) is in the clause's note, printed with every result.

How it works

  1. The bundle is verified first (via @makerchecker/proof-verifier). If the chain does not verify, the report says so and its findings must not be relied upon — evidence only counts on an intact chain.
  2. Each clause carries an evidence predicate over the audit events (eventType, payloadMatch, payloadHas, anyOf/allOf, chainVerified). A clause is:
    • MET when concrete events prove it — their seq numbers are cited;
    • NOT_EVIDENCED when the activity occurred but the evidence is absent;
    • NOT_APPLICABLE when the clause's precondition never arose in this run (e.g. a signature clause when no approval was requested).

It is a control-to-clause crosswalk, not a certification: an assessor confirms the operator's posture against their own validated scope.

Status meanings, precisely

| Status | Meaning | |---|---| | MET | Required evidence is present on a verified chain; cited by seq. | | NOT_EVIDENCED | The clause applies to this run but its evidence is missing. | | NOT_APPLICABLE | The clause's precondition did not occur in this bundle. |

Library

import { checkObligations } from "@makerchecker/obligations";
const report = await checkObligations(bundle, profile, { expectedPublicKeyPem });

Test

npm test   # runs the checker against a real signed bundle and asserts statuses

License

Apache-2.0.