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

@governed-ai/padp-runtime

v0.9.0

Published

Governed AI decision runtime: intelligence pipeline, governance gate, artifact lifecycle, decision lifecycle, and copilot foundation — application-neutral, deterministic, package-extensible.

Readme

@governed-ai/padp-runtime

Governed AI decision runtime — the application-neutral core of the Programmable AI Decision Platform (PADP). It provides a deterministic intelligence pipeline, a governance gate that evaluates policy before any skill executes, artifact and decision lifecycle management, and a copilot foundation. It carries no application domain logic and no database driver — a host application supplies both through documented extension seams.

  • Deterministic — intelligence output is derived from platform state (KPIs, insights, records). No LLM call is required to operate the core paths.
  • Governed — every pipeline request passes through a governance gate (allow / deny / require-approval) before a skill runs.
  • Persistence-agnostic — the runtime talks to a RuntimePersistence port; the host injects a concrete adapter (e.g. a Drizzle/Postgres implementation).
  • Package-extensible — domain capabilities (entities, KPIs, skills, semantics) are contributed by package plugins registered at bootstrap.

Install

npm install @governed-ai/padp-runtime

Requires Node.js >=22. See docs/INSTALLATION.md.

Quick start

import {
  configureRuntimePersistence,
  pluginRegistry,
  Intelligence,
} from "@governed-ai/padp-runtime";

// 1. Inject a persistence adapter (host-owned).
configureRuntimePersistence(myRuntimePersistenceAdapter);

// 2. Register one or more domain package plugins.
pluginRegistry.register(myDomainPackagePlugin);

// 3. Issue a governed intelligence request through the pipeline.
const pipeline = new Intelligence.IntelligencePipeline(/* ... */);
const result = await pipeline.request({ /* ... */ });

A complete runnable walkthrough is in docs/QUICK_START.md.

Public API surface

The package exposes a single curated entry point — @governed-ai/padp-runtime. Internal modules are not importable from the published package.

| Export | Kind | Purpose | | --- | --- | --- | | configureRuntimePersistence, getRuntimePersistence | function | Persistence injection seam | | RuntimePersistence + port types | type | Contract the host adapter implements | | pluginRegistry | object | Register/resolve domain package plugins | | logger | object | Structured (pino) logger singleton | | Intelligence | namespace | Pipeline, artifact manager, skill registry, registries | | Governance | namespace | Governance gate, policies, certification, adapters | | Copilot | namespace | Copilot service, intent registry, response builder | | Contracts | namespace | Zod/TS contracts (intelligence, packages, shared, openapi) | | ConfigurationDomain | namespace | Entity / KPI / skill domain definition types |

Full enumeration: docs/EXTENSION_GUIDE.md and the repository's docs/PUBLIC_API_INVENTORY.md.

Documentation

License

UNLICENSED — distribution is controlled by the platform owner. See docs/VERSIONING_POLICY.md for release governance.