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

@adia-ai/gen-ui

v0.8.51

Published

AdiaUI generative-UI system — compose strategies, retrieval, the harvested training corpus, and catalog-aware + LLM-judge validation. Emits A2UI protocol messages; pairs with @adia-ai/a2ui (the protocol runtime). Folded from @adia-ai/a2ui-{compose,retriev

Downloads

1,989

Readme

@adia-ai/gen-ui

The AdiaUI generation system: it turns a natural-language intent into A2UI protocol messages.

One-way dependency: gen-ui → a2ui. This package produces A2UI documents; @adia-ai/a2ui is the protocol runtime that renders them. Nothing here is required to render A2UI — only to generate it.

Minted by ADR-0048 by folding together four previously separate packages.

What's inside

| Dir | Was | Does | |---|---|---| | compose/ | @adia-ai/a2ui-compose | Strategy engines (monolithic · zettel · chunk-zettel · free-form), the escalation cascade, the HTML→A2UI transpiler, eval harness | | retrieval/ | @adia-ai/a2ui-retrieval | Intent classification, domain routing, embeddings, anti-patterns, context assembly, the feedback loop | | corpus/ | @adia-ai/a2ui-corpus | The v0.9 component catalog, harvested training chunks, chunk embeddings, eval fixtures | | validate/ | @adia-ai/a2ui-validator (catalog + semantic halves) | Catalog-aware structural validation and the LLM semantic judge |

Folding retrieval and compose into one package is what dissolved the long-standing import cycle between them — both sides are now plain relative imports.

Install

npm i @adia-ai/gen-ui

Use

import { generateUI } from '@adia-ai/gen-ui';

const { messages } = await generateUI('a login form with email and password');

Subpaths address each half directly:

import { pick, registerEngine } from '@adia-ai/gen-ui/compose/strategies/registry';
import { classifyIntent }       from '@adia-ai/gen-ui/retrieval/domain-router';
import { getChunk }             from '@adia-ai/gen-ui/corpus/chunk-library';
import { validateMessages }     from '@adia-ai/gen-ui/validate/catalog';
import catalog                  from '@adia-ai/a2ui/catalog' with { type: 'json' };

The catalog import is not a typo: since ADR-0050 the catalog is the protocol-side contract and ships from @adia-ai/a2ui/catalog (this package consumes it over the one-way gen-ui → a2ui edge). @adia-ai/gen-ui/corpus/* still serves the corpus fuel — chunks, manifest, embeddings, chunk-library — and the bare @adia-ai/gen-ui/corpus root export was removed with the move.

Migrating from the old package names

| Old | New | |---|---| | @adia-ai/a2ui-compose | @adia-ai/gen-ui | | @adia-ai/a2ui-compose/<sub> | @adia-ai/gen-ui/compose/<sub> | | @adia-ai/a2ui-retrieval (/<sub>) | @adia-ai/gen-ui/retrieval (/<sub>) | | @adia-ai/a2ui-corpus (/<sub>) | @adia-ai/gen-ui/corpus (/<sub>) | | @adia-ai/a2ui-validator/catalog | @adia-ai/gen-ui/validate/catalog | | @adia-ai/a2ui-validator/semantic | @adia-ai/gen-ui/validate/semantic |

The deprecated @adia-ai/a2ui-compose/engine and /engines/* aliases are not carried over — they were already deprecated one cycle. Use compose/core and compose/strategies/*.

Protocol-side validation (validateSchema) did not move here — it stays in the protocol package. The full map lives in .claude/docs/MIGRATION GUIDE.md.

Maintaining

The corpus chunks are build outputs — harvested from data-chunk-tagged demo HTML via npm run harvest:chunks. Never hand-edit corpus/chunks/*.json. Likewise the catalog artifact is generated by scripts/build/components.mjs.

Eval floors are preserve-not-regress and gate every calibration change; see the a2ui-maintenance skill for the pipeline contract and the floor numbers.