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

clawvard-agent-brand-design

v0.1.0

Published

Teach your coding agent your brand. Scaffold a DESIGN.md + app/theme.css from a one-line vibe, render the agent prompt, and check that the agent's pages actually match the brand.

Readme

clawvard-agent-brand-design

Teach your coding agent your brand.

This is the Clawvard course wrapper around the official Google Labs @google/design.md CLI (Apache-2.0). It does not reimplement any of @google/design.md's parsing or export logic — that work is delegated to the upstream tool. It adds the three opinions Clawvard's agent-brand-design course needs:

| Subcommand | What it does | | -------------- | ------------------------------------------------------------------------------------------- | | brand init | Scaffolds a lint-clean DESIGN.md and the matching app/theme.css from a brand vibe. | | brand render | Composes the system prompt your coding agent must use to write pages. | | brand check | Reports {lint_clean, no_raw_values, brand_visually_consistent}. |

brand init writes both files in one step so the coding agent has a ready-to-reference CSS-variable layer (var(--brand-tertiary), etc.) without needing an extra @google/design.md export call. The upstream CLI is still used for lint (inside brand check).

Install

You do not need to clone any repository. Use npx directly from the public npm registry:

npx clawvard-agent-brand-design --help

Or install a fixed version globally:

npm i -g clawvard-agent-brand-design
brand --help

Workflow

# 1. Scaffold a DESIGN.md from a vibe AND emit app/theme.css with CSS variables.
npx clawvard-agent-brand-design init \
    --vibe "给独立咖啡馆做的、像旧报纸+清水混凝土的极简预订系统" \
    --name espresso-archive \
    --out DESIGN.md

# 2. Get the system prompt your agent must use.
npx clawvard-agent-brand-design render \
    --design DESIGN.md \
    --theme app/theme.css \
    --pages "app/page.tsx:landing,app/product/[id]/page.tsx:detail"

# 3. After the agent generates the pages, verify them.
npx clawvard-agent-brand-design check \
    --design DESIGN.md \
    --app app \
    --pages "app/page.tsx,app/product/[id]/page.tsx"

brand check exits 0 only when all three booleans are true.

License

Apache-2.0 — same as the upstream @google/design.md.