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

@uix-ai/core

v0.0.2

Published

UIX Core - The protocol types for declarative UI generation

Readme

@uix-ai/core

Core type definitions for the UIX Intermediate Representation (Lucid IR) -- the universal format that bridges AI agent backends and UI renderers.

Install

pnpm add @uix-ai/core

What is Lucid IR?

Lucid IR is a JSON-based intermediate representation that describes AI conversation content in a structured, renderer-agnostic way. AI agent events flow through adapters into Lucid IR, and renderers convert Lucid IR into actual UI.

AI Agent Events -> Adapter -> Lucid IR (this package) -> Renderer -> UI

Core Types

LucidConversation

A single message in a conversation, containing one or more content blocks.

import type { LucidConversation } from '@uix-ai/core'

const conversation: LucidConversation = {
  id: 'conv-1',
  role: 'assistant',       // 'user' | 'assistant' | 'system'
  status: 'completed',     // 'streaming' | 'completed' | 'error'
  blocks: [ /* LucidBlock[] */ ],
  timestamp: Date.now(),
}

LucidBlock

A content block within a conversation. The generic type parameter narrows the content field automatically.

import type { LucidBlock } from '@uix-ai/core'

// Text block
const text: LucidBlock<'text'> = {
  id: 'b1',
  type: 'text',
  status: 'streaming',
  content: { text: 'Hello...' },
}

// Tool call block
const tool: LucidBlock<'tool'> = {
  id: 'b2',
  type: 'tool',
  status: 'completed',
  content: {
    name: 'search',
    input: { query: 'weather' },
    output: { results: [] },
    status: 'success',
  },
}

Block Types

| Type | Content Interface | Description | |------|-------------------|-------------| | text | TextBlockContent | Markdown text content | | tool | ToolBlockContent | Tool/function call with input, output, and execution status | | thinking | ThinkingBlockContent | AI reasoning/chain-of-thought | | image | ImageBlockContent | Image with URL and dimensions | | file | FileBlockContent | File attachment with MIME type | | error | ErrorBlockContent | Error with code and message | | source | SourceBlockContent | Citation/reference for RAG applications |

Tool Status Lifecycle

Tool blocks have a fine-grained status model:

pending -> streaming -> ready -> running -> success | error

With optional human-in-the-loop: ready -> approval-required -> approved | denied

Type Guards

Type guards narrow LucidBlock to a specific block type, giving you type-safe access to content:

import { isTextBlock, isToolBlock, isThinkingBlock, isSourceBlock } from '@uix-ai/core'

function renderBlock(block: LucidBlock) {
  if (isTextBlock(block)) {
    return block.content.text       // TypeScript knows this is TextBlockContent
  }
  if (isToolBlock(block)) {
    return block.content.name       // TypeScript knows this is ToolBlockContent
  }
  if (isThinkingBlock(block)) {
    return block.content.reasoning  // TypeScript knows this is ThinkingBlockContent
  }
}

Status Guards

import { isStreaming, isCompleted, isError } from '@uix-ai/core'

if (isStreaming(block)) { /* show cursor */ }
if (isCompleted(block)) { /* render final */ }

Tool Status Helpers

import { isToolAwaitingApproval, isToolTerminal, isToolExecuting } from '@uix-ai/core'

if (isToolAwaitingApproval(toolBlock)) { /* show approve/deny buttons */ }
if (isToolTerminal(toolBlock)) { /* show result */ }
if (isToolExecuting(toolBlock)) { /* show spinner */ }

LucidRenderer Interface

Implement this interface to create custom renderers:

import type { LucidRenderer, LucidConversation, LucidBlock } from '@uix-ai/core'

class MyRenderer implements LucidRenderer<string> {
  render(conversations: LucidConversation[]): string {
    return conversations.map(c => c.blocks.map(b => this.renderBlock?.(b)).join('')).join('\n')
  }

  renderBlock(block: LucidBlock): string {
    // ...
  }
}

Links