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

vibery-website

v1.0.0

Published

Browse and install Claude Code templates via interactive web interface. Currently 600+ templates across agents, commands, MCPs, settings, and hooks.

Readme

Vibery Kits Website

Browse and install Claude Code templates via interactive web interface. Currently 600+ templates across agents, commands, MCPs, settings, and hooks.

Live: https://vibery.app/products/vibery-kits CLI: npx vibery install <template>

Quick Start

# Install dependencies
npm install

# Development server (http://localhost:4321)
npm run dev

# Production build
npm run build

# Preview build locally
npm run preview

Project Structure

src/
├── pages/              # Routes (SSG)
│   ├── index.astro     # Home
│   ├── agents.astro    # Type filters
│   ├── stacks.astro    # Stacks listing
│   └── stacks/[id].astro  # Dynamic detail
├── components/         # UI components
│   ├── Header.astro    # Navigation (Astro)
│   ├── Hero.astro      # Home section
│   ├── StacksGrid.astro
│   └── vue/            # Interactive islands
│       ├── SearchBar.vue
│       ├── CartSidebar.vue
│       ├── TemplateModal.vue
│       └── FilterBar.vue
├── composables/        # Vue state (useCart, useModal, etc.)
├── layouts/            # Master layout
├── types/              # TypeScript interfaces
├── styles/             # Tailwind CSS
└── data/               # JSON data
    ├── templates.json  # 600+ templates
    ├── stacks.json     # 12 curated stacks
    └── outcomes.json   # 8 wizard flows

Key Commands

# Template management (CLI tool)
npm run tpl:report       # Health check
npm run tpl:validate     # Cross-reference validation
npm run tpl -- add agent "name" "description"
npm run tpl -- remove agent "name"
npm run tpl -- search "query"

# Data validation
npm run data:validate

# Development
npm run dev              # Dev server
npm run build           # Prod build
npm run preview         # Local prod preview
npm run astro          # Direct astro CLI

Design System: Warm Terminal

Professional, warm color palette (not neon). Stone-based backgrounds with terracotta accent.

Backgrounds: #0c0a09 (deep) → #44403c (active)
Text: #fafaf9 (primary) → #57534e (muted)
Accent: #e07256 (terracotta)
Fonts: Satoshi (sans), IBM Plex Mono (mono)

Classes: warm-bg-deep, warm-text-primary, warm-accent, etc.

Tech Stack

| Component | Version | | ------------------ | ------- | | Astro | ^5.0.0 | | Vue | ^3.4.0 | | Tailwind CSS | ^3.4.1 | | Phosphor Icons | ^2.1.2 | | Cloudflare adapter | ^12.0.0 |

Architecture

Static Site Generation (Astro) with Vue Islands for interactivity.

  • Pages pre-rendered to HTML at build time
  • Vue components hydrate only on client:load
  • Shared state via composables (useCart, useModal, etc.)
  • Data persisted to localStorage (cart)
Build: Astro → HTML + CSS + JS
Deploy: Cloudflare Pages (global CDN)
Client: HTML (static) + Vue islands (reactive)

State Management

Composables Pattern (no external store)

useCart(); // Cart items + localStorage sync
useModal(); // Modal open/close + current item
useSearch(); // Filter + search logic
useNotifications(); // Toast queue
useUsageStats(); // Analytics tracking

Documentation

  • docs/codebase-summary.md - File inventory, tech stack, metrics
  • docs/project-overview-pdr.md - Vision, business model, requirements
  • docs/code-standards.md - Naming conventions, patterns, TypeScript
  • docs/system-architecture.md - Data flow, components, deployment

Known Issues

  1. ClientScripts.astro (451 lines) - Legacy JS, needs migration to Vue
  2. Dual implementations - Modal, Cart, FilterBar exist in Astro + Vue
  3. Neon class refs - Some components have old neon-* classes

→ See docs/system-architecture.md for details and migration plan.

Deployment

Platform: Cloudflare Pages Build: astro builddist/ Cache: HTML (1h), CSS/JS (30 days, immutable)

# Manual deploy
npm run build
# Upload dist/ to Cloudflare Pages

Related Projects

  • /Applications/MAMP/htdocs/vibe-templates/cli/ - CLI tool (npx vibery)
  • /Applications/MAMP/htdocs/claude-code-templates/ - Template library (600+)

Next Steps

Phase 2 (Jan 2025): Vue Islands migration, fix neon-* classes Phase 3 (Feb 2025): Authentication, premium unlock Phase 4 (Mar 2025+): Team features, community, analytics

See CLAUDE.md for development notes.

License

Licensed under project parent directory.