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

@radu_api/sentinel-scan

v1.2.17

Published

Deterministic AI compliance infrastructure for the EU AI Act. Offline WebAssembly CLI that audits AI systems, manifests, and technical documentation for regulatory alignment.

Readme

Sentinel Scan

EU AI Act

Deterministic AI compliance scanner for the EU AI Act.

Run local audits on AI systems, manifests, and documentation.
Works offline. No external API calls. No telemetry by default.


Install

npm install -g @radu_api/sentinel-scan

Or run instantly:

npx @radu_api/sentinel-scan@latest check --manifest sentinel.manifest.json

Sentinel enforces a zero-ambiguity CLI contract.
Positional arguments are NOT supported.


🚀 Quick Start (Recommended Flow)

# 1. Initialize manifest
npx @radu_api/sentinel-scan@latest init

# 2. (Optional) Discover signals in your project
npx @radu_api/sentinel-scan@latest discover

# 3. Scaffold missing compliance structure
npx @radu_api/sentinel-scan@latest fix --apply

# 4. Run compliance check
npx @radu_api/sentinel-scan@latest check --threshold 90 --manifest sentinel.manifest.json

CLI Usage

Default behavior

Runs a scan on sentinel.manifest.json in the current directory:

npx @radu_api/sentinel-scan@latest

Explicit behavior (recommended)

npx @radu_api/sentinel-scan@latest check --threshold 90 --manifest sentinel.manifest.json

Manifest Example

{
  "app_name": "hr-cv-screening-ai",
  "risk_category": "high",
  "declared_flags": [
    "transparency_disclosure_provided",
    "user_notification_ai_interaction"
  ],
  "human_oversight": {
    "description": "Human reviewer monitors decisions and can override outputs."
  },
  "oversight_evidence_path": "docs/compliance/human_oversight.md",
  "logging_capabilities": {
    "enabled": true,
    "events_logged": ["input", "output", "decision"]
  },
  "logging_evidence_path": "docs/compliance/data_governance.md"
}

Required Supporting Documents

For high-risk systems:

  • docs/compliance/risk_assessment.md (Art. 9)
  • docs/compliance/human_oversight.md (Art. 14)
  • docs/compliance/data_governance.md (Art. 20)

Example Output

Sentinel Check: PASS
Score: 100/100
Risk Category: high

Verified Articles:
Art. 9, Art. 13, Art. 14, Art. 20

Verified Articles indicate substantiated requirements.
They do NOT imply full legal compliance.


Risk Model

  • Minimal → Basic transparency (Art. 13)
  • Limited → Transparency + evidence required
  • High-Risk → Full coverage (Art. 9, 13, 14, 20)
  • Unacceptable → Immediate HARD FAIL

Policy System

Sentinel uses deterministic policy resolution:

  1. Local: sentinel.policy.json
  2. Fallback: internal default policy

Used ONLY when no local policy exists to ensure consistent CI behavior.


CI Integration

- name: Sentinel Compliance Scan
  run: npx @radu_api/sentinel-scan@latest check --manifest sentinel.manifest.json

Returns:

  • 0 → pass
  • non-zero → failure

Philosophy

  • Deterministic
  • Explainable
  • Offline-first
  • Standard-aligned (EU AI Act 2024/1689)

Links

  • Verified Registry: https://moxo08.github.io/sentinel-verified/
  • Repository: https://github.com/MOXO08/sentinel