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

claude-code-marketplace

v0.5.7

Published

Web UI for browsing and managing Claude Code marketplace plugins

Readme

Claude Code Marketplace

A web-based dashboard for browsing, installing, and managing Claude Code plugins across multiple marketplaces.

npm

Quick Start

npx claude-code-marketplace --open

Or with a custom port:

npx claude-code-marketplace --port 8080

Options

--port <number>   Custom port (default: 3457)
--project <path>  Project directory for project-scoped plugins
--open            Open browser on start

Features

  • Multi-marketplace browser — aggregate plugins from GitHub repos, git URLs, and local directories
  • Scope management — install, enable, and disable plugins per scope (user / project / local)
  • Component inspection — browse skills, commands, agents, MCP servers, hooks, and LSP servers inside each plugin
  • File preview — read plugin source files directly in the browser with syntax highlighting
  • Marketplace actions — add, update, and remove marketplace sources
  • PWA support — installable as a standalone desktop app with offline caching
  • Dark / light theme — styled with IBM Plex Mono, orange accent palette
  • Keyboard-first — vim-style navigation, press ? for shortcuts

How It Works

The server reads ~/.claude/plugins/ to discover installed marketplaces and plugin registries. Each marketplace points to a directory containing a .claude-plugin/marketplace.json manifest listing available plugins.

The UI renders a tree of marketplaces with their plugins. Clicking a plugin opens its detail panel showing description, version, scope installation matrix, and filesystem-based component breakdown.

All plugin management operations (install, uninstall, enable, disable) delegate to claude plugin CLI commands.

Tech Stack

  • Frontend — vanilla JS single-page app, no framework dependencies
  • Backend — Express.js serving static files + REST API
  • Styling — CSS custom properties with dark/light theme support
  • Icons — inline SVG (Feather-style, 24x24 viewBox)
  • Linter — Biome with husky pre-commit hook

Development

git clone https://github.com/NikiforovAll/claude-code-marketplace.git
cd claude-code-marketplace
npm install
npm run dev
npm run lint        # check with biome
npm run lint:fix    # auto-fix

License

MIT