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

@lynx-js/genui

v0.2.1

Published

Generative UI for Lynx.

Readme

@lynx-js/genui

Generative UI primitives for Lynx applications.

@lynx-js/genui is the single npm package for the GenUI toolchain. It exposes A2UI rendering, OpenUI rendering, A2UI prompt/catalog utilities, and the CLI from one package while keeping implementation directories private to this monorepo.

Installation

pnpm add @lynx-js/genui @lynx-js/react

@lynx-js/react is a peer dependency. Some built-in A2UI components and the default OpenUI Library also use @lynx-js/lynx-ui; install it when your app uses those surfaces.

Entry Points

import {
  A2UI,
  createMessageStore,
  createOpenUiLibrary,
  createStreamingParser,
  buildA2UISystemPrompt,
  extractCatalogComponents,
} from '@lynx-js/genui';

The root entry point exports the stable APIs most applications and tools need:

  • A2UI ReactLynx renderer and data-store helpers.
  • OpenUI parser, library, and renderer APIs.
  • A2UI prompt builders.
  • A2UI catalog extraction utilities.

Focused subpaths are also available:

import { A2UI, Text, Button } from '@lynx-js/genui/a2ui';
import { createMessageStore } from '@lynx-js/genui/a2ui/store';
import { createOpenUiLibrary } from '@lynx-js/genui/openui';
import { buildA2UISystemPrompt } from '@lynx-js/genui/a2ui-prompt';
import { extractCatalogComponents } from '@lynx-js/genui/a2ui-catalog-extractor';

Catalog manifests are exported through a single public catalog entry:

import { Text, Button } from '@lynx-js/genui/a2ui/catalog';

A2UI

A2UI renders agent-generated UI messages that follow the A2UI v0.9 protocol. Create a message store, push protocol messages into it from your transport, and render the latest surface with <A2UI>.

import { A2UI, Button, Text, createMessageStore } from '@lynx-js/genui/a2ui';

const messageStore = createMessageStore();

export function GenUIScreen() {
  return (
    <A2UI
      messageStore={messageStore}
      catalogs={[Text, Button]}
      onAction={(action) => {
        // Send the action back to your agent, then push response messages
        // into the same messageStore.
      }}
    />
  );
}

Use the A2UI style entry when you want the packaged component styles:

import '@lynx-js/genui/a2ui/styles/theme.css';

See a2ui/README.md for catalog composition and custom component details.

OpenUI

OpenUI renders OpenUI Lang v0.5 responses through a configurable component library.

import { OpenUiRenderer, createOpenUiLibrary } from '@lynx-js/genui/openui';

const library = createOpenUiLibrary();
const response = 'root = Stack([TextContent("Hello")])';

export function OpenUIScreen() {
  return <OpenUiRenderer response={response} library={library} />;
}

Import the optional OpenUI theme tokens once in your app:

import '@lynx-js/genui/openui/styles/theme.css';

The renderer and component styles are imported by their modules.

See openui/README.md for streaming and custom library examples.

CLI

The package installs the GenUI CLI and the low-level catalog extractor binary:

genui --help
genui-cli --help
a2ui-catalog-extractor --help

a2ui-cli is also kept as a compatibility alias for existing A2UI scripts. New scripts should prefer the namespace-first genui a2ui ... or genui openui ... form.

Generate catalog artifacts:

genui a2ui generate catalog \
  --catalog-dir src/catalog \
  --source src/functions \
  --out-dir dist/catalog

Generate an A2UI system prompt:

genui a2ui generate prompt \
  --catalog-dir dist/catalog \
  --out dist/a2ui-system-prompt.txt

Generate an OpenUI system prompt:

genui openui generate prompt --out dist/openui-system-prompt.txt

Published Package Layout

Only @lynx-js/genui is intended to be published. The package contains compiled JavaScript and declarations under dist/ directories, plus CLI entry points, README files, styles, and extractor skills.

The root index.ts is compiled during build. Do not hand-write dist/index.js or dist/index.d.ts; run:

pnpm -C packages/genui build

Before publishing, verify the package contents:

pnpm -C packages/genui pack --dry-run

License

Apache-2.0