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

@theokit/ui

v0.18.1

Published

Theo UI — framework-agnostic React component library with the Violet Forge design system. Focused on AI-agent interfaces, cloud dashboards, and developer-tooling surfaces.

Readme

@theokit/ui · the Build (UI) auxiliary of the Theo ecosystem

The UI your agent already needs.

A React component library built for AI agent surfaces and cloud dashboards. 153 components designed for what you'd otherwise build from scratch. The visual surface verb of Chat. Build. Deploy.

Editorial typography. Three runtime-swappable themes. shadcn-compatible registry. Apache-2.0.

license react tests components shadcn

Quickstart · Components · Themes · Design System · Quality Gates · Contributing · Security


The shift

There is a version of your product where the agent UI is half-built before you start.

The chat thread, the tool calls, the streaming assistant message, the model selector, the cost meter, the context window indicator, the audit log row, the permission modal, the deployment status, the build log stream — all rendered. All themed. All accessible. You write product logic. The interface ships with you.

Why @theokit/ui

Most component libraries optimize for marketing pages. @theokit/ui is built for the surfaces that AI agents and cloud dashboards actually need — surfaces where transparency, density of information, and developer trust matter more than hero sections.

  • Built for AI agents. Primitives for skills, cron jobs, permission matrices, MCP servers, memory editing, hook config, audit logs, model cards, token usage charts, sub-agent dispatch — the components a transparent agent UI actually needs.
  • Built for PaaS. Composites for project cards, deployment rows, build log streams, env var editors, domain config, preview environments, rollback flows, metrics panels.
  • Themeable at runtime. Ship three themes out of the box, swap them live via <ThemeProvider />, or define your own.
  • shadcn-compatible registry. Copy individual components into your project (npx shadcn add …) or install the whole package — your call.
  • shadcn v4 conventions. Every component emits data-slot (and data-variant/data-size where it varies) so you target and override styles by attribute, not Tailwind class order. The "use client" directive is preserved in the build, so client components are safe to import into a React Server Component tree when installed from npm.
  • Per-subpath types. import { Button } from "@theokit/ui/button" resolves an isolated Button declaration, not the whole barrel's type surface.
  • Standard React + Tailwind package. React is the only required peer (18 or 19); Radix UI, CVA, cmdk, and lucide ship as dependencies. Pairs with TheoKit, or runs standalone in any React app.

The agent UI gap is real — most teams reach for shadcn for the primitives and build the agent-specific parts from scratch, losing weeks before shipping a real surface.

| Surface need | @theokit/ui | shadcn / Radix | Tremor | Build it yourself | |---|---|---|---|---| | Generic primitives (Button, Card, Dialog) | Yes (same Radix foundation) | Yes | Limited | Slow | | Agent-specific primitives (AgentEvent, ToolCall, MCPServerCard) | Yes | None | None | Weeks | | cloud-specific composites (DeploymentRow, BuildLogStream, RollbackUI) | Yes | None | None | Weeks | | Three runtime-swappable themes | Built-in | DIY | DIY | DIY | | shadcn-compatible registry | Yes | Original | No | N/A | | ESM-only, tree-shake via barrel | Yes | Yes | Yes | DIY | | a11y enforced as a quality gate | Yes — vitest-axe on 151 stories | Per-component, manual | Manual | Often skipped |

Same Radix UI underneath as shadcn — no philosophy fight. We just shipped the next 153 components you were about to write.

What you'd build

  • Coding assistant interface. Chat thread, streaming assistant, tool-call timeline, file diff viewer, permission matrix, sub-agent dispatch.
  • Agent dashboard. Run stats, session timeline, MCP server admin, cron job scheduler, memory editor, audit log, model card, cost meter.
  • cloud dashboard. Project switcher, deployment row, build log stream, env var editor, domain config, preview environments, rollback flows, metrics panels.
  • Internal AI tools. Quick-action chips, intent selector, system-prompt editor, skill manager, rule editor, lane board.
  • Onboarding & auth surfaces. Login split, social auth row, folder selector, recent folders list, project card.

How it works

Below this line, full technical vocabulary is in play. Installation, themes, the component catalog, design system, quality gates.

Quickstart

Option A — install the package

pnpm add @theokit/ui
/* app entrypoint */
@import "@theokit/ui/tokens.css";
@import "@theokit/ui/styles.css";
import { ThemeProvider, AgentEvent, ToolCall, DeploymentRow } from "@theokit/ui";

export default function App() {
  return (
    <ThemeProvider defaultTheme="violet-forge" defaultMode="dark">
      <AgentEvent kind="thinking" text="Reading repository structure..." />
      <ToolCall name="readFile" status="completed" />
      <DeploymentRow status="ready" env="production" branch="main" />
    </ThemeProvider>
  );
}

Option B — copy individual components (shadcn-style)

npx shadcn@latest add https://usetheodev.github.io/theo-ui/r/button.json
npx shadcn@latest add https://usetheodev.github.io/theo-ui/r/deployment-row.json

Branded https://ui.usetheo.dev/r/* URL will follow once the DNS CNAME is configured (single record at the registrar). Both URLs serve identical content.

Every item under registry/r/ is a standalone copy-paste unit with its dependencies declared.

Precondition. Copy-paste install requires @/ configured as a path alias in your tsconfig.json ({ "paths": { "@/*": ["./src/*"] } }) — the shadcn-ui 2.0 convention. Inlined source uses @/lib/cn and similar @/components/ui/... imports. If your project uses a different alias (Vite default ~/, etc.), either add the @/ mapping or rewrite the imports after copy-paste. The shipped registry/index.json declares this requirement under metadata.requires.tsconfigPathAlias.

SSR / Server Components

Inject <ThemeScript> in <head> to prevent FOUC and hydration mismatch:

import { ThemeProvider, ThemeScript } from "@theokit/ui";

<html lang="en" suppressHydrationWarning>
  <head>
    <ThemeScript defaultTheme="violet-forge" defaultMode="dark" />
  </head>
  <body>
    <ThemeProvider defaultTheme="violet-forge" defaultMode="dark">
      {children}
    </ThemeProvider>
  </body>
</html>

Option C — install the agent skill

For AI coding assistants (Claude Code, Cursor, Codex), @theokit/ui ships a companion skill that teaches the assistant how to use the library correctly — pick the right composite, respect the design tokens, run the slop test before shipping.

npx skills add usetheodev/theo-ui

The skill lives at skills/theo-ui/ and is installable via the vercel-labs/skills CLI. Four verbs: default (build), audit, migrate, catalog. See skills/theo-ui/README.md for details.


Component catalog

154 components, organized by mechanical rule: a primitive imports no other @theokit/ui component; a composite does.

ActionBar · AgentErrorCard · AgentEvent · AgentHandoff · AgentProfile · AgentStartingState AgentStreaming · Alert · ArtifactPreview · AttachmentChip · AuditLogEntry · AutoCompactNotice Avatar · Badge · BranchIndicator · BrowserControls · BuildLogStream · Button CapabilityIndicator · Card · ChannelCard · ChatThread · Checkbox · ContextCard ContextWindowBar · CopyButton · CostMeter · CreatedFilesCard · CronJobCard · DangerZone Dialog · DiffViewer · DropdownMenu · EmptyState · ExportChatDialog · FolderContextCard FolderSelector · FormField · GatewayStatusIndicator · HookConfig · HookEventLog · Input IntentSelector · Label · LaneBoard · LoginSplit · MCPServerCard · MemoryEditor MentionMenu · MetricsPanel · ModelCard · ModelSelector · Pagination · PermissionMatrix PinInput · PlanBadge · Progress · ProgressChecklist · ProjectSwitcher · QuickActionChips RadioGroup · RecentFoldersList · RuleCard · RunStats · RunStatusPill · RunningTasksPanel ScrollArea · Select · SessionListItem · SessionTimeline · Sheet · Sidebar Skeleton · SkillCard · SocialAuthRow · StatTile · StatusDot · StepsRail SubAgentDispatch · Switch · SystemPromptEditor · Table · Tabs · TaskNode TaskPlan · TerminalPanel · Textarea · ThinkingLevelSelector · Timestamp · Toast Toaster · TokenUsageChart · ToolCall · ToolCallCard · ToolResult · ToolsList Tooltip · TopNav · UpdateBanner

AccountMenu · AgentComposer · AgentEditor · AgentStream · AgentTimeline · AgentToolRenderer · ApprovalCard · ChatComposer · ChatMessage · ChatMessageAction · ChatMessageActions · ChatMessageBranch · ChatMessageBranchContent · ChatMessageBranchNext · ChatMessageBranchPage · ChatMessageBranchPrevious · ChatMessageBranchSelector · ChatMessageContent · ChatMessageResponse · ChatMessageRoot · ChatMessageToolbar · ChoicePrompt · CodeBlock · CommandPalette · ConfirmDialog · ConfirmPrompt · CronJobsList · DataPart · DataTable · DeploymentRow · DomainConfig · EnvVarEditor · FilePart · MCPServerList · MetricCard · MultiSelectPrompt · PageShell · PermissionModal · PreviewEnvCard · PreviewPanel · ProjectCard · ReasoningPart · RollbackUI · RuleEditor · SkillEditor · SkillsList · SourceDocumentPart · SourceUrlPart · StabilityBundleViewer · StatusIndicator · TaskHeader · TextPart · TextPrompt · ToolCallPart · UsageMeter

Browse them all in Ladle:

pnpm dev   # http://localhost:61000

There's also a playground app for full-page demos:

pnpm playground   # http://localhost:5180

Themes

Three themes ship out of the box, all driven by HSL-split CSS variables. Swap at runtime with <ThemeProvider /> + <ThemeSwitcher />.

| Theme | Vibe | Primary | Accent | |---|---|---|---| | violet-forge (default) | Editorial dark, AI workspace energy | Theo violet #A855F7 | Burnt sienna #C96442 | | classic-paper | Warm light, document-first reading | Indigo #2563EB | Amber #F59E0B | | aurora-terminal | High-contrast dev terminal feel | Cyan-aurora #3DD9D6 | Aurora pink #FF5C8A |

import { ThemeProvider, ThemeSwitcher, builtinThemes } from "@theokit/ui";

<ThemeProvider defaultTheme="violet-forge" themes={builtinThemes}>
  <ThemeSwitcher />
  {/* your app */}
</ThemeProvider>

Define your own theme by extending Theme from @theokit/ui — see docs/design-system.md.


Design system: Violet Forge

| Token | Light | Dark | |---|---|---| | Primary (Theo violet) | #A855F7 | #A855F7 | | Accent (burnt sienna) | #C96442 | #C96442 | | Background | #FFFFFF pure white (Vercel-style) | #0A0A0A charcoal | | Display font | Geist Sans | Geist Sans | | Body font | Geist Sans | Geist Sans | | Mono | Geist Mono | Geist Mono |

Type scale (Vercel-inspired): 64 / 48 / 40 / 32 / 28 / 24 / 20 / 18 / 15 / 14 / 12 px.

Full spec: docs/design-system.md. Visual audit of competitors (Vercel, Railway, Render, Fly.io, Netlify, Coolify): docs/design-audit.md.

Self-hosting fonts

By default @theokit/ui/styles.css @imports Geist + Geist Mono from fonts.googleapis.com. For GDPR-sensitive deployments or strict CSP environments, self-host instead:

  1. Download Geist from Vercel (or the geist npm package).
  2. Drop the assets into your public/fonts/ folder.
  3. In your app's global CSS, comment the @theokit/ui/styles.css @import rule for Google Fonts (or import @theokit/ui/tokens.css only) and add your own @font-face blocks for Geist and Geist Mono.

The CSS variables (--font-body, --font-display, --font-mono) are already wired to consume whichever @font-face rules are present — no component changes needed.


Quality Gates

Every change is validated through a strict chain — no PR ships otherwise.

pnpm quality:gates

Runs in order: format:checklint:citypechecktestbuildregistry:buildregistry:validatequality:structurequality:bundlequality:a11yladle:build.

The structural validator (scripts/validate-quality-gates.ts) enforces taxonomy (primitive vs composite by import graph), registry/test/story presence per item (test gate is hard-fail), public-export surface, design-system fidelity (Geist fonts + Vercel type scale), governance files (LICENSE + CHANGELOG), README ↔ exports drift, docs typography drift, composite-via-barrel imports, compound-pattern uniformity (Object.assign /*#__PURE__*/), README/architecture census consistency, vitest-axe coverage on ≥30 interactive primitives, and zero stray *.bak / *.json.tmp artifacts in the working tree. Full spec: docs/quality-gates.md.


Development

pnpm install
pnpm dev               # Ladle component preview (http://localhost:61000)
pnpm playground        # Full-page demo app (http://localhost:5180)
pnpm test              # Vitest (vitest run)
pnpm test:watch        # Vitest watch mode
pnpm test:coverage     # Vitest with coverage report
pnpm typecheck         # tsc --noEmit
pnpm lint              # Biome check
pnpm lint:fix          # Biome check --write
pnpm build             # tsup → dist/
pnpm registry:build    # registry/*.json → registry/r/*.json
pnpm sync:readme       # Regenerate README counts + catalog from source
pnpm test:registry     # Fixture install test (registry copy-paste check)
pnpm quality:gates     # full chain

Architecture

src/
  components/
    primitives/    atomic building blocks (no internal @theokit/ui deps)
    composites/    assembled flows (compose primitives via barrel imports)
  foundations/     Ladle stories for colors, typography, spacing, elevation, motion
  themes/          ThemeProvider, ThemeScript, ThemeSwitcher, 3 themes
  styles/          tokens.css, fonts.css, global.css
  lib/             cn, types
  test/            Vitest setup (with happy-dom polyfills)
.ladle/            Ladle config
registry/          shadcn-compatible registry descriptors (input)
  r/               built registry items (output of registry:build)
scripts/           build-registry, validate-registry, sync-readme, validate-quality-gates
docs/              design-system, quality-gates, architecture, design-audit
tests/             fixture-shadcn-app/ (registry install integration test)

Bundle & module format

  • ESM-only@theokit/ui ships a single dist/index.js (ESM) plus per-component dist/components/.../index.d.ts type declarations. No CJS build. Consumers running on CommonJS Node need to transpile or use a bundler. This is intentional: modern ESM-first React toolchains are the target.
  • Tree-shaking via the barrel — modern bundlers (Vite, esbuild, Rollup, webpack 5, Bun) read the sideEffects: ["**/*.css"] hint and tree-shake unused components from the barrel import (import { Button } from "@theokit/ui" drops every other component from the final bundle). No per-component subpath exports are needed for this to work.
  • Subpath imports are aliases (not separate bundles). package.json#exports publishes 99 component subpaths (@theokit/ui/button, @theokit/ui/agent-event, …). Every subpath resolves to the same dist/index.js. tsup is configured with splitting: false deliberately — a 99-entry split would duplicate shared code (cn, types, Radix runtime) into every chunk and inflate the tarball. Subpath imports exist for IDE intellisense and import organization. Modern bundlers tree-shake the same way whether you write import { Button } from "@theokit/ui" or import { Button } from "@theokit/ui/button". Runtimes that don't tree-shake (Jest classic, Node REPL, raw browser ESM) will load the full barrel either way — accept that cost or pre-bundle with the consumer's tooling.
  • CSS distributiondist/styles.css is the recommended single import (combines tokens, fonts self-hosted, Tailwind base/components/utilities). @theokit/ui/tokens.css, @theokit/ui/fonts.css, and @theokit/ui/fonts-cdn.css (opt-in) are available for finer control.
  • Self-hosted fonts — Geist Sans + Geist Mono ship as woff2 under dist/fonts/ (~290 KB total). Opt into Google Fonts CDN with @import "@theokit/ui/fonts-cdn.css" instead of the default if you prefer not to host static assets.

Status

Honest claims only.

  • Production. 153 components, 1,513 tests passing, zero a11y violations on 151 Ladle stories, bundle size enforced. Quality gates run on every PR.
  • Registry distribution. Served at https://usetheodev.github.io/theo-ui/r/ (GitHub Pages, auto-deploy on every push to main). The branded https://ui.usetheo.dev/r/ URL is a single DNS CNAME away — point ui.usetheo.dev at usetheodev.github.io and add it as a custom domain in Pages settings.
  • ESM-only. Modern bundlers only. Consumers on CommonJS Node need to transpile or use a bundler.
  • Component count is the floor, not the ceiling. New agent and PaaS surfaces ship through PRs; every addition runs the same quality gates.

Engines (isolated subpaths)

Engines ship as bundle-isolated subpaths — they are NOT in the main barrel (@theokit/ui). Each one has its own dist file, its own optional peer-deps, and its own RFC.

# Whiteboard — view-only renderer for JSON in Excalidraw style.
pnpm add @theokit/ui roughjs perfect-freehand
import { Whiteboard, type WhiteboardData } from "@theokit/ui/whiteboard";

const scene: WhiteboardData = {
  version: 1,
  width: 600,
  height: 400,
  elements: [
    { type: "rect", x: 50, y: 50, w: 120, h: 60, label: "User" },
    { type: "ellipse", x: 350, y: 50, w: 120, h: 60, label: "DB" },
    { type: "arrow", x: 170, y: 80, to: [350, 80], label: "query" },
  ],
};

<Whiteboard data={scene} fitOnLoad />
# Slide — view-only renderer for markdown + YAML frontmatter, Marp-inspired.
pnpm add @theokit/ui mdast-util-from-markdown mdast-util-gfm \
  micromark-extension-gfm mdast-util-to-hast hast-util-sanitize \
  hast-util-to-jsx-runtime yaml
import { Slide } from "@theokit/ui/slide";
import "@theokit/ui/slide/themes/default.css";

const md = `---
theme: default
lang: en-US
---

# Pull Request #142

Adds rate limiting to the public API.

- Refill rate: 100 req/sec
- Burst capacity: 200 tokens`;

<Slide markdown={md} aspectRatio="16:9" />

Note: IDs generated from markdown headings are prefixed with user-content- by the default sanitize schema (hast-util-sanitize clobber protection). Consumers wanting raw anchors override via the components prop.

# SlideDeck — multi-slide deck w/ navigation, presenter, fullscreen, PDF.
pnpm add @theokit/ui mdast-util-from-markdown mdast-util-gfm \
  micromark-extension-gfm mdast-util-to-hast hast-util-sanitize \
  hast-util-to-jsx-runtime yaml
import { SlideDeck } from "@theokit/ui/slide-deck";
import "@theokit/ui/slide/themes/default.css";

const deck = `# Welcome

A multi-slide deck.

<!-- notes: lembre da agenda -->

---

# Navigation

Use ← / → / Space, swipe on mobile, or click thumbnails.

---

# Done`;

<SlideDeck slides={deck} transition="fade" />

| Engine | Subpath | Status | RFC | |---|---|---|---| | Whiteboard (view-only, JSON → SVG, Excalidraw aesthetic) | @theokit/ui/whiteboard | Available | RFC 0001 | | Slide (view-only, markdown → themed surface, Marp-inspired) | @theokit/ui/slide | Available | RFC 0002 | | SlideDeck (multi-slide deck w/ navigation + presenter + fullscreen + PDF) | @theokit/ui/slide-deck | Available | RFC 0003 | | Diagram | TBD | Roadmap | TBD |

Each engine ships behind the same gate chain (test + story + a11y + registry + bundle isolation). No version commitment for the Roadmap items — these are not on the 0.1 / 1.0 line.

Roadmap

The component count is the floor, not the ceiling. The next surfaces on the roadmap are creative and authoring tools — built in-house under the same quality gates, not third-party wrappers.

| Item | Type | Inspiration | Status | |---|---|---|---| | Slide engine | Primitive | Marp | Explorer (RFC) | | Slide deck composite | Composite | Marp / Reveal.js | Explorer (RFC) | | Diagram engine | Primitive | Mermaid | Explorer (RFC) |

Each engine is a multi-quarter effort and lands through an individual RFC. No version commitment yet — these are not on the 0.1 / 1.0 line. Each engine ships behind the same gate chain (test + story + a11y + registry + bundle). Names will be locked at RFC time, not before.

License

Apache-2.0 © usetheo.dev

Community

  • Discord: https://discord.usetheo.dev/
  • X: https://x.com/usetheodev
  • LinkedIn: https://linkedin.com/company/usetheodev