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

@decocms/zero-build-slides

v0.3.0

Published

Zero-build presentation engine for AI agents — Preact + htm + Tailwind CDN

Readme

Zero-Build Slides

A presentation engine designed for AI agents. Four plain JS files, no npm, no build step — serve from any static hosting and go.

Install as Claude Code Skill

bunx @decocms/zero-build-slides

This installs the skill so Claude Code (and 40+ other agents) knows how to create and edit slide decks for you. Then just ask your agent to create a presentation.

Quick Start

bunx serve
open http://localhost:3000

Architecture

| File | Role | |------|------| | index.html | Bootstrap: import maps, fonts, Tailwind CDN, base CSS | | app.js | Router, viewport scaling (1920x1080), keyboard nav, theme context | | layouts.js | Every slide template as a Preact component | | data.js | Presentations as plain JS objects + color maps | | themes.js | 6 built-in color themes | | context.js | Preact context for theme propagation |

How It Works

  • Preact + htm via ESM import maps from esm.sh CDN — JSX-like syntax that runs natively in the browser
  • Tailwind CDN with inline config for design tokens
  • Hash-based routing: #/deck-slug?slide=N&theme=name
  • Viewport scaling: 1920x1080 base scaled to fit any screen at 16:9

Working with AI Agents

An LLM can create or edit presentations by modifying data.js:

  1. Read the data file and understand the slide schema
  2. Add/edit slides as JS objects — pick a layout, set colors, write content
  3. Upload to any static host — no build step needed

See SKILL.md for the full agent reference (slide schema, available layouts, color palette, theme system).

Themes

Add ?theme=name to any URL to switch the color palette instantly.

| Theme | Accent | Vibe | |-------|--------|------| | deco | Green #D0EC1A | Default brand | | ocean | Blue #38BDF8 | Corporate | | ember | Orange #F97316 | Warm startup | | midnight | Purple #C084FC | Creative | | forest | Green #4ADE80 | Organic | | mono | White #FFFFFF | Minimal B&W |

Example: #/demo?theme=ocean&slide=3

Available Layouts

  • title — Cover and section headers (centered or TOC variant)
  • dinner-thesis — Bold claim with proof-point bullets
  • dinner-features — Icon cards with hover interactions (1-4 columns)
  • dinner-demo — 40/60 split with stacked cards
  • dinner-admin-cases — Two-column: blog grid + quote cards
  • market-signals-funnel — 4-stage chevron pipeline
  • dinner-roadmap — 3-column strategic directions
  • dinner-cta — Call-to-action with icon cards
  • timeline — Alternating above/below timeline
  • retrospective-intro — Numbered section index
  • retrospective-stats — Animated counter stats

URL Structure

https://your-host/#/deck-slug?slide=5&theme=ocean
  • deck-slug — presentation key from DECKS map in app.js
  • slide — slide number (0 = cover)
  • theme — color theme name

License

MIT