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

@agent-layer-zero/soma

v0.2.1

Published

Design tokens for AgentLayerZero — CSS variables, Tailwind preset, animations

Readme

Soma — Design Tokens for AgentLayerZero

CSS variables, component classes, animations, and a Tailwind preset for the AgentLayerZero design system.

Soma is the cell body of a neuron — the structural foundation everything else grows from.

Install

npm install @agent-layer-zero/soma

Usage

Import All Styles

import '@agent-layer-zero/soma/all.css'

Import Individual Layers

import '@agent-layer-zero/soma/theme.css'        // CSS variables (colors, spacing, typography)
import '@agent-layer-zero/soma/animations.css'    // glow, pulse, spin keyframes
import '@agent-layer-zero/soma/base.css'          // scrollbar, font smoothing
import '@agent-layer-zero/soma/components.css'    // buttons, inputs, cards, badges, modals
import '@agent-layer-zero/soma/chat.css'          // markdown prose styles for chat

Tailwind Preset

// tailwind.config.js
module.exports = {
  presets: [require('@agent-layer-zero/soma/tailwind-preset')],
}

Then use: bg-alz-bg, text-alz-accent, border-alz-border, rounded-alz-lg, etc.

Themes

<!-- Dark (default) -->
<div data-alz-theme="dark">

<!-- Light -->
<div data-alz-theme="light">

<!-- Transparent — inherits from parent -->
<div data-alz-theme="transparent">

<!-- Custom override -->
<div style="--alz-accent: #e11d48;">

CSS Variables

Colors

--alz-bg · --alz-bg-secondary · --alz-bg-tertiary · --alz-text · --alz-text-muted · --alz-accent · --alz-accent-hover · --alz-border · --alz-error · --alz-success · --alz-warning

Chat

--alz-user-bubble · --alz-user-text · --alz-assistant-bubble · --alz-assistant-text

Spacing

--alz-space-xs · --alz-space-sm · --alz-space-md · --alz-space-lg · --alz-space-xl

Typography

--alz-font · --alz-font-mono · --alz-text-xs · --alz-text-sm · --alz-text-base · --alz-text-lg

Radii

--alz-radius-sm · --alz-radius-md · --alz-radius-lg · --alz-radius-xl · --alz-radius-full

Component Classes

| Class | What | |-------|------| | .alz-btn .alz-btn-primary .alz-btn-sm | Buttons | | .alz-input .alz-textarea .alz-label | Form inputs | | .alz-toggle | On/off switch | | .alz-card .alz-card-hover | Bordered containers | | .alz-badge .alz-badge-accent | Status pills | | .alz-modal .alz-modal-backdrop | Dialog overlay | | .alz-spinner .alz-spinner-sm .alz-spinner-lg | Loading spinners | | .alz-divider | Horizontal separator | | .alz-link | Styled anchor |

Animation Classes

| Class | Effect | |-------|--------| | .alz-glow | Bright sparkle glow (3s) | | .alz-glow-slow | Subtle breathing glow (8s) | | .alz-glow-subtle | Very subtle opacity pulse (10s) | | .alz-pulse | Opacity pulse (2s) | | .alz-spin | Rotation (1s) |

License

GPL-3.0