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

@cathode-ui/react

v0.4.1

Published

Cathode UI — retro-future React design system with motion, haptics, sound, and AI-native surfaces. 45 primitives, machine-readable manifest, MCP server for AI agents.

Downloads

28

Readme

@cathode-ui/react

Retro-future React design system. 45 primitives with pure-black / paper-white base, monospace typography, pixel shapes, tight saturated accents, motion + haptics + sound baked in, AI-native surfaces on four primitives.

By Madhan Raj.

Docs →


For AI coding agents

This package ships two files designed for you — load them before composing UI:

  • node_modules/@cathode-ui/react/CATHODE.md — long-form onboarding: install, setup, theming, motion/haptic/sound model, AI-hook surface, cluster overview.
  • node_modules/@cathode-ui/react/cathode.manifest.json — structured registry of every component with props, whenToUse, vs disambiguation, examples, a11y, feedback, and framework-specific adapters.

Read those and you have full Cathode context — no scraping source, no doc-hunting. For interactive discovery (suggest_component(intent)), also see @cathode-ui/mcp — configure once, every MCP-aware tool (Claude Code, Cursor, Windsurf, Codex, VS Code) gets tool access to the manifest.


Install

npm install @cathode-ui/react

Peer deps: react >= 18, react-dom >= 18.

AI-native

Cathode is designed to be read by AI coding agents first. A machine-readable cathode.manifest.json describes every component — props, whenToUse, vs disambiguation, accessibility, feedback patterns, usage examples — validated against a published JSON Schema.

A companion @cathode-ui/mcp Model Context Protocol server exposes the manifest as tools so Claude Code, Cursor, etc. can discover and suggest components by intent.

What's inside

45 primitives across 8 clusters:

  • Layout — TerminalFrame, Card, Stack, Accordion, HazardStripes
  • Forms — Button, TextField, TextArea, Select, Checkbox, RadioGroup, Toggle, Counter, SearchBar, FormField, Chips
  • Data — Badge, Tag, Avatar, Kbd, CodeBlock, Table, StatusTile, DotLeader, Pill
  • Navigation — Tabs, Breadcrumbs, Menu, Pagination
  • Feedback — ProgressBar, Loader, Skeleton, PixelBar, ActivityBar, SignalBars, PulsingDot, Toast
  • Overlays — Dialog, Drawer, Popover, Tooltip
  • AI — Chat (first-class AI conversation component)
  • Retro — ScanLine, TypewriterText, Countdown

Plus opt-in AI hooks on TextField (ghost-text suggest), SearchBar (semantic search), Button (AI action routing).

Accessibility

Every primitive is tested against @axe-core/playwright with WCAG 2.0/2.1 A+AA tags. The docs site runs the full gate on every build.

Setup

// Root of your app — import these three CSS entry points once.
import '@cathode-ui/react/tokens.css';   // CSS variables + dark/light
import '@cathode-ui/react/fonts.css';    // JetBrains Mono (optional)
import '@cathode-ui/react/styles.css';   // compiled component rules

import { CathodeProvider } from '@cathode-ui/react';

export function App() {
  return (
    <CathodeProvider>
      {/* ...your tree */}
    </CathodeProvider>
  );
}

<CathodeProvider> accepts: theme (auto / dark / light), motion (none / subtle / strong), haptic (bool), sound (bool — default off), ai (a CathodeAIProvider instance).

Quick taste

import {
  TerminalFrame, DotLeader, Pill, Button,
  TextField, FormField, Toggle,
  Dialog, Chat,
} from '@cathode-ui/react';

<TerminalFrame title="TELEMETRY" accent="info">
  <DotLeader label="LATENCY" value="42 MS" />
  <DotLeader label="STATE"   value="LIVE" valueColor="var(--cathode-color-success)" />
</TerminalFrame>

<FormField label="CALLSIGN" hint="4 characters, alphanumeric." required>
  <TextField value={callsign} onChange={setCallsign} />
</FormField>

<Button variant="primary">SAVE</Button>

Author

Built by Madhan Raj.

License

MIT.