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

@aios-alpha/design

v0.3.0

Published

AIOS unified design system — DTCG tokens, CSS variables, Tailwind v4 theme, and Pencil variables. Editorial Minimal direction: greyscale chrome, Instrument typography, colour rationed to badges and data viz.

Readme

@aios-alpha/design

The one design system for every AIOS surface — website, team brain, workspace GUI, and every scaffolded workspace. Editorial Minimal direction: dual-mode, greyscale chrome, Instrument typography, colour rationed to badges and data viz.

| Package | What it ships | |---------|---------------| | @aios-alpha/design (this repo root) | DTCG tokens → dist/tokens.css, dist/tailwind-theme.css, DESIGN.md | | @aios-alpha/ui (react/) | shadcn-based React components themed through the token bridge |

  • DESIGN.md — pinned design contract (like brain-api.md for sync). Read this before building UI.
  • tokens/*.json — DTCG source of truth. Edit here, then rebuild.
  • dist/ — generated by npm run build:tokens (gitignored; CI rebuilds before publish).

Build

npm install
npm run build:tokens   # regenerates dist/

cd react && npm install && npm run build   # compiles @aios-alpha/ui to react/dist/

Consume in another repo

Install both packages (npm, same version — currently 0.2.0):

npm install @aios-alpha/design@^0.2.0 @aios-alpha/ui@^0.2.0

Tailwind v4 app — global stylesheet, in this order:

@import "@aios-alpha/design/tokens.css";
@import "@aios-alpha/design/tailwind-theme.css";
@import "tailwindcss";
@source "../node_modules/@aios-alpha/ui/dist";
@custom-variant dark (&:where(.dark, .dark *));

Self-host fonts (no Google CDN):

@import "@fontsource/instrument-serif/400.css";
@import "@fontsource/instrument-sans/400.css";
@import "@fontsource/instrument-sans/500.css";
@import "@fontsource/instrument-sans/600.css";
@import "@fontsource/instrument-sans/700.css";
@import "@fontsource/jetbrains-mono/400.css";

Then use bridge utilities (bg-background, text-foreground, bg-primary, text-violet, font-display, rounded-full, …). Toggle dark mode with class="dark" on <html>.

React components:

import { Button, TierBadge, AiosMark, KpiStat } from "@aios-alpha/ui";

Astro / Starlight — import tokens.css and map --aios-* onto Starlight's --sl-* (see aios-website).

Raw CSS (no Tailwind) — import tokens.css and use var(--aios-*) directly.

Semantic tokens (0.2.0)

| Token | Use for | |-------|---------| | --aios-primary | Pill buttons, active tabs (near-black light / white dark) | | --aios-violet | Brand mark, team/deliverable badges, link accents | | --aios-accent | Lime — live status, checks, rationed affirmative actions | | --aios-emerald/amber/cyan/fuchsia | Kind/tier badges, KPI sparklines |

Migrating from 0.1.x

  • Fonts: Space Grotesk + Plus Jakarta Sans → Instrument Serif + Instrument Sans.
  • Buttons: violet glow pills → near-black/white editorial pills (primary token changed).
  • Badges: team/deliverable now use violet token, not primary.
  • Local CSS bridges: if you alias --accent to --aios-primary, split — buttons stay on primary, link/highlight washes move to --aios-violet.

Light vs dark

Light is :root. class="dark" on <html> swaps color values; type, spacing, and radius are mode-independent.

Pencil prototyping

dist/tokens.pencil.json holds flat token maps for the Pencil MCP set_variables call. See PENCIL.md.