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

@assemblyline-agents/openui

v4.0.0

Published

Full OpenUI component runtime and branded artifact lifecycle tools for Assembly Line agents.

Readme

@assemblyline-agents/openui

Reusable Assembly Line lifecycle tools backed by the official OpenUI runtime.

The default component pack is the complete 54-component `@openuidev/react-ui` standard library. Developers can allow every component, restrict it by name, or register an independently versioned component pack. The model supplies only OpenUI Lang and a title. It never supplies publication HTML, CSS, or JavaScript.

Add the pack

```sh assembly-line add openui agent ```

This creates `tool-config/openui.ts`, three tool wrappers, and the OpenUI operating skill. Configure `R2_PUBLIC_BASE_URL` or `S3_PUBLIC_BASE_URL` with an HTTPS origin before publishing.

The generated configuration uses the official standard pack with every component enabled. Restrict and theme it explicitly when needed:

```ts import { defineOpenUiConfig } from "@assemblyline-agents/openui";

export default defineOpenUiConfig({ allowedComponents: ["Stack", "Card", "CardHeader", "TextContent", "Table", "Col"], brand: { name: "Example", theme: { background: "#F7F7F5", textBrand: "#1F2937", fontHeading: "Georgia, serif", fontBody: "Arial, sans-serif" } } }); ```

The tool's `document` schema is generated from the selected pack and allowlist, so agents see the permitted component signatures rather than a framework-owned report vocabulary. Artifact titles are lifecycle metadata and do not force a particular root component.

The standard renderer keeps desktop row compositions intact and automatically wraps row `Stack` layouts on narrow screens. Metric cards and callouts use a readable minimum width, yielding two columns when the container can support them and one column when it cannot. The document itself cannot scroll sideways; wide tables and Cartesian charts retain component-local scrolling, while pie, radial, and radar compositions wrap within the viewport. Mobile table text stays at the reviewed size instead of being enlarged by browser text autosizing.

Component packs

A component pack combines an OpenUI library, an immutable identity and version, and trusted publication code:

```ts import { createOpenUiLibrary, defineOpenUiConfig, type OpenUiComponentPack } from "@assemblyline-agents/openui";

const pack: OpenUiComponentPack = { id: "@example/product-ui", version: "3.1.0", library: createOpenUiLibrary({ root: "ProductPage", components: [ProductPage, Metric, Chart] }), render({ source, title, config }) { return renderReviewedProductUi({ source, title, theme: config.brand.theme }); } };

export default defineOpenUiConfig({ componentPack: pack }); ```

Pack renderers execute as trusted application code. Review and version them like any other plugin. Project content may select installed packs, but it must not load arbitrary repository code into the runtime.

Lifecycle and security

`openui_create` and `openui_update` store private immutable revisions with the exact pack version, allowlist, theme, and provenance. `openui_publish` renders the selected revision without an approval pause, verifies the bytes served by storage, and selects that exact HTTPS URL for runtime delivery. Its model-facing result omits the URL, so the channel does not depend on the model copying a link.

The official renderer embeds OpenUI's reviewed browser runtime and styles in a network-disabled CSP. Agent content cannot add scripts, styles, external requests, queries, or mutations. Local OpenUI state and actions are disabled by default and can be enabled by the developer. Tightening the current allowlist or interactivity policy also blocks publication of older revisions that exceed it.

Published links are unlisted bearer links. Use the built-in `deliver_artifact` tool instead when the artifact must remain a private channel file.