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

@kolkrabbi/kol-brand-template

v0.1.0

Published

The KOL brand manifest schema + a placeholder reference implementation — the blank slate copied for each new client brand and the dev fixture for generic styleguide renderers. Plain ESM, no React.

Readme

@kolkrabbi/kol-brand-template

The brand manifest schema + a placeholder reference implementation. The keystone of the brand-kit tier:

The schema is the product. The template conforms to it, the scraper feeds it, stationery consumes it, the styleguide renders it.

import { brand } from '@kolkrabbi/kol-brand-template'          // the dummy fixture
import { defineBrand, validateBrand } from '@kolkrabbi/kol-brand-template/schema'

Two jobs

  1. The slate. New client brand? Copy src/index.js into the client's repo as a local package, fill the fields, delete what you don't need. Every field is optional — renderers must degrade gracefully on missing fields. Per-client instances never ship to public npm (confidentiality rule).
  2. The dev fixture. Generic styleguide renderers (type specimens, swatches, spectrum grids) develop against this obviously-dummy brand ("Norðurljós Vinnustofa").

The manifest shape

meta (declared identity) · colors.anchors · ramps (stops with literal values) · type (families + scale) · logos (package-relative SVG paths) · clearspace · stationery · presence (scraper-fed observed footprint) · press · timeline. Full JSDoc types in src/schema.js.

defineBrand(manifest) is a type anchor (returns its input, gives editors the field types). validateBrand(manifest) checks the types of fields that are present — it never demands presence.

Scrape adapter

import { draftFromScrape } from '@kolkrabbi/kol-brand-template/adapter'
import { scrape } from '@kolkrabbi/kol-scrape'

const draft = draftFromScrape(await scrape('https://client.com'))
// → { meta: { name, url, socials }, presence: { site, profiles, feeds } }

Mechanical fields only. Press/timeline entries need judgment (subject-vs-author, collisions, dating) — that's the kol-press-research skill, which emits entries in this schema.

Conforming packages

  • @kolkrabbi/kol-brand — Kolkrabbi's own brand (public).
  • Client brands — local packages in each client's repo (never public).