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

@hachej/boring-ui-plugin-cli

v0.1.53

Published

Slim boring-ui plugin authoring CLI for workspace runtimes.

Downloads

4,548

Readme

@hachej/boring-ui-plugin-cli

Plugin authoring CLI for the boring-ui workspace runtime. The binary is boring-ui-plugin; it is also bundled into @hachej/boring-ui-cli and reached as boring-ui plugin <subcommand>.

It scaffolds, verifies, tests, and manages boring-ui plugins, and exports the plugin-source resolution helpers the CLI uses to discover plugins.

Two kinds of plugin

| | create | scaffold | |--|----------|------------| | Output | npm-package plugin under plugins/<name>/ (copied from templates/plugin/) | workspace runtime plugin under <workspace>/.pi/extensions/<name>/ | | Build | has a build step (tsup), workspace:* deps | no build step, hot-reloadable via /reload | | Use for | app/internal publishable plugins | per-workspace plugins authored from inside the running UI |

Commands

boring-ui-plugin status [--json]
boring-ui-plugin create <name> [--path <dir>]
boring-ui-plugin scaffold <name> [workspace]
boring-ui-plugin verify [name] [workspace]
boring-ui-plugin test <name> [--url <url>] [--workspace <id>] [--panel-id <id>] [--timeout-ms <ms>] [--json]
boring-ui-plugin install [-l|--local|--global] [--workspace <dir>] <source>
boring-ui-plugin list   [--local|--global|--all] [--workspace <dir>] [--json]
boring-ui-plugin remove [-l|--local|--global] [--workspace <dir>] <id-or-source>
  • status — reports whether workspace-local plugin roots are enabled (driven by BORING_AGENT_WORKSPACE_LOCAL_PLUGIN_ROOTS) and the resolved .pi/extensions dir.
  • verify — validates plugin manifests on disk without a running server (manifest validity + boring.front / boring.server / pi.extensions file existence). It does not execute plugin code, so syntax errors only surface on a real /reload. Prints hints for known errors and exits non-zero on failure.
  • test — drives a self-test against a running workspace server (default URL inferred, override with --url) to catch panel render / front-import failures that don't appear in the /reload banner.
  • install / list / remove — manage plugin sources in two scopes: local (<workspace>/.pi, default) and global (~/.pi/agent). Sources can be a local path, a git URL, or an npm spec. Dependencies are not installed for you — run your package manager in the plugin folder, then /reload in the UI.

Run boring-ui-plugin with no command for usage.

Plugin manifest

Plugins are declared in package.json via two fields (src/manifest.ts):

  • boring — workspace/UI discovery: front (browser entry default-exporting a BoringFrontFactory), server (backend entry), labels.
  • pi — agent/Pi runtime contributions: extensions, skills, prompt fragments, Pi packages, and slash commands.

Programmatic API

The package exports its building blocks for embedding hosts (e.g. the CLI): runBoringUiPluginCli, createPlugin, scaffoldPlugin, verifyPlugin, runPluginSelfTest, installPluginSource / listPluginSources / removePluginSource, and source-scope helpers (resolvePluginSourceScopePaths, readPluginSourceRecords) via the ./plugin-sources subpath. See src/index.ts for the full surface.

Templates

templates/plugin/ is the canonical npm-package plugin shape copied by create; its README documents the front / server / shared layout and invariants. templates/*-canonical.* are the single-file canonical sources used by scaffold.

Docs

License

MIT