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

storybook-addon-designbook

v0.9.0

Published

Storybook addon and CLI for Designbook — AI workflows that structure your design for CMS implementation

Readme

storybook-addon-designbook

Storybook addon and CLI for Designbook — AI workflows that structure your design for CMS implementation.

Designbook turns designs (from Figma, Google Stitch, an existing website, or AI conversation) into structured specs ready for implementation in any CMS (Drupal, WordPress, ...) and any frontend framework. This addon provides the Storybook integration: live preview of design artifacts, workflow tracking panels, and the storybook-addon-designbook CLI used by the Designbook AI skills.

Features

  • 🖼 Live preview of Designbook artifacts (components, sections, screens, design tokens) in Storybook
  • 🧭 Manager panels for workflow status, composition trees, and visual comparison
  • 🛠 CLI for workflow tracking, schema validation, CSS guards, and Storybook process management
  • 🧩 Vite plugin that loads designbook.config.yml and design artifacts into the preview

Requirements

  • Storybook ≥ 10 (Vite builder)
  • Node.js ≥ 20

Installation

npm install --save-dev storybook-addon-designbook

Register the addon in .storybook/main.js:

const config = {
  addons: [{ name: 'storybook-addon-designbook' }],
};
export default config;

The addon resolves its settings from a designbook.config.yml found by walking up from the Storybook config directory.

CLI

npx storybook-addon-designbook <command>

| Command | Purpose | | ----------- | ------------------------------------------------------------------------- | | config | Output shell exports for designbook.config.yml values | | validate | Validate Designbook artifacts (data, tokens, components) against schemas | | guard-css | Verify token vars and fonts resolve in a compiled stylesheet probe | | workflow | Manage workflow tracking (create, done, result, list, ...) | | storybook | Storybook daemon lifecycle (start, stop, status, logs, restart) | | plan | Resolve a workflow definition into a self-contained markdown plan |

The CLI is primarily driven by the Designbook AI skills (/debo-* workflows) — see the main repository for the full setup including skill installation.

License

MIT