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

@generative-semantic-ui/core

v0.1.0

Published

It's like HTML for AI agents — a closed JSX vocabulary for LLM-generated UI, compiled to your component library of choice.

Downloads

74

Readme

@generative-semantic-ui/core

It's like HTML for AI agents — a closed JSX vocabulary for LLM-generated UI, compiled to your component library of choice.

Agents don't need to know what shadcn is. They emit JSX against a small, library-agnostic vocabulary (Stack, Button, Input…); you adapt it to shadcn/ui, MUI, Chakra, plain HTML, anything. Output is ~4× smaller than raw framework code, the prompt is ~300 tokens (perfect for cache_control), and swapping libraries means touching one file.

Install

npm install @generative-semantic-ui/core

Peer dependency: React ≥ 18.

Using a prebuilt adapter

The fastest way to get started is to pair the core with one of the adapter packages:

npm install @generative-semantic-ui/core @generative-semantic-ui/shadcn
import { compile } from "@generative-semantic-ui/core";
import { registry } from "@generative-semantic-ui/shadcn";
import "@generative-semantic-ui/shadcn/styles.css";

const element = compile(jsxFromAgent, registry);

Quick start (custom adapter)

If you have your own design system, define a registry — it's ~50 LOC:

import { compile, registerAction, dispatchAction, DEFAULT_PROMPT_RULES } from "@generative-semantic-ui/core";

// 1. Define your registry (the only library-aware part)
const registry = {
  Stack: ({ gap = 2, children }) => (
    <div className={`flex flex-col gap-${gap}`}>{children}</div>
  ),
  Button: ({ onClick, children }) => (
    <ShadcnButton onClick={() => dispatchAction(onClick)}>{children}</ShadcnButton>
  ),
  // ...
};

// 2. Register action handlers
registerAction("save", () => saveProfile());

// 3. Ask the agent for UI
const jsx = await callClaude({
  system: [{ type: "text", text: DEFAULT_PROMPT_RULES, cache_control: { type: "ephemeral" } }],
  messages: [{ role: "user", content: "a profile form with name, surname, address" }],
});

// 4. Render
const element = compile(jsx, registry);

API

compile(jsx, registry): ReactElement

Parses a JSX string and renders it via the registry. Throws on:

  • Unknown tags
  • Multiple roots
  • <>fragments</>
  • Spread props ({...foo})
  • Non-literal expressions (onClick={() => x})

registerAction(name, handler) / dispatchAction(name, payload?)

String-named action dispatcher. Agents emit onClick="save"; your registry's Button wraps the real click with dispatchAction("save").

DEFAULT_PROMPT_RULES

The default vocabulary + generation rules as a string. Designed to be cached with cache_control: { type: "ephemeral" } — it never changes between calls.

Vocabulary

Default: Stack, Row, Box, Text, Heading, Button, Input, Image, Divider.

Add more by extending the registry and writing your own prompt block.

Why

Agents trained on public code emit verbose, library-specific output — imports, className soup, closures. That's expensive per call and hard to cache. A closed semantic DSL gives you:

  • ~4× fewer output tokens per component
  • A system prompt that never changescache_control stays warm
  • Library portability — swap shadcn ↔ MUI by rewriting one file
  • Runtime OR build-time — same DSL, two render paths

Safety

compile() rejects anything off-vocabulary. Wrap the render in an error boundary; malformed agent output fails loudly instead of rendering garbage.

License

MIT