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

@blackbelt-technology/pi-dashboard-forms-bpmn

v0.7.0

Published

Two pi skills bundled together: openforms-mui (render/author OpenForms FormSchemaJSON as themed, accessible MUI) and bpmn-package-explorer (generate/view vendor-neutral BPMN 2.0 + DMN process packages). Ships canvas-webapp for rendering either on the pi-d

Downloads

107

Readme

@blackbelt-technology/pi-dashboard-forms-bpmn

Two complementary pi skills for turning structured definitions into interactive, canvas-viewable UI — bundled for distribution cohesion, kept as separate, single-responsibility skills (not merged).

| Skill | What it does | |-------|--------------| | openforms-mui | Runtime interpreter that renders/authors an OpenForms FormSchemaJSON as idiomatic, themed, accessible MUI (React). 14 field types, conditional logic, calculated fields, validation. Bundler-based (Vite) library under .pi/skills/openforms-mui/tools. | | bpmn-package-explorer | Generate + view vendor-neutral BPMN 2.0 process packages (plus DMN decisions and forms). Buildless & offline: vendored bpmn-js / dmn-js viewers, Node layout bundle, no npm install, no network. | | canvas-webapp | Shared infra skill: how to render a web app on the pi-dashboard canvas (sandboxed opaque-origin iframe) — static build with relative base + a CORS static server. Referenced by both skills above. |

Why bundled, not merged

The two capabilities live in different domains (forms vs. process models) and have opposite build philosophies — openforms needs a bundler + React/MUI; bpmn deliberately avoids all installs to stay offline. Merging would force the buildless skill to pull React/MUI and lose its offline guarantee. The package is the unit of cohesion; the skills stay focused. Their only real overlap — rendering on the dashboard canvas — is factored into canvas-webapp.

Install

# from the monorepo checkout (global, available in every pi session):
pi install /Users/<you>/…/pi-agent-dashboard/packages/pi-forms-bpmn
# or project-scoped:
pi install -l ./packages/pi-forms-bpmn
# try ephemerally, no persistence:
pi -e ./packages/pi-forms-bpmn

pi config   # enable/disable individual skills

On install a guarded postinstall (scripts/ensure-openforms-deps.mjs) installs the openforms tools/ dependencies only if missing — a cheap no-op otherwise. The bpmn skill needs nothing installed.

Note — canvas-webapp name overlap. The dashboard's own extension package also bundles a canvas-webapp skill. If both packages are enabled on one machine you get two same-named skills (identical content; one shadows the other). Disable one via pi config if desired.

Requirements

  • Node ≥ 20.12 (bpmn layout bundle floor).
  • A browser for the canvas viewers.

Rendering on the pi-dashboard canvas

Both skills serve web content the dashboard shows in a sandbox="allow-scripts" (opaque-origin, no allow-same-origin) iframe proxied under /live/<id>/. See canvas-webapp for the full recipe: static build with base:'./' + a static server that sets Access-Control-Allow-Origin: * (module fetch in an opaque-origin iframe is CORS with Origin: null).

Attribution

See NOTICE. openforms-mui is a clean-room re-implementation from the OpenForms schema reference (Apache 2.0); bpmn-package-explorer vendors bpmn.io viewers under the bpmn.io License (MIT + a watermark obligation that is retained — the bpmn.io watermark must stay visible in every rendered diagram).