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

@guanmu/ccprofile

v0.1.19

Published

Agent Profile Manager for Claude Code

Readme

ccx

   ______ ______ __   __
  / ____// ____/ \ \ / /
 | |    | |      \ V /
 | |___ | |___   / . \
  \____/ \____/ /_/ \_\

Agent Profile Manager for Claude Code.

ccx lets you save named Claude Code plugin profiles and install a whole profile into the current project with one command. It is designed as a command-first CLI, with a lightweight interactive wizard for manual use.

Installation

npm install -g @guanmu/ccprofile

Or with Bun:

bun add -g @guanmu/ccprofile@latest

Verify the installed version:

ccx --version

Quick Start

ccx create dev
ccx add dev cc-design
ccx add dev browser
ccx list dev
ccx install dev

ccx install dev runs claude plugin install <plugin> --scope project for every plugin in the dev profile.

Commands

ccx                            # Interactive wizard, TTY only
ccx ui                         # Interactive wizard, TTY only

ccx install <profile>          # Install all plugins from a profile
ccx create <name>              # Create a profile
ccx delete <name>              # Delete a profile
ccx profiles                   # List all profiles

ccx add <profile> <plugin>     # Add a plugin to a profile
ccx remove <profile> <plugin>  # Remove a plugin from a profile
ccx list <profile>             # List plugins in a profile
ccx search <keyword>           # Search plugins in installed marketplaces

ccx --version                  # Show version
ccx --help                     # Show help

Legacy aliases are still supported:

ccx <profile>                  # Same as ccx install <profile>
ccx <profile> add [plugin]
ccx <profile> remove [plugin]
ccx <profile> list
ccx add <name>                 # Same as ccx create <name>
ccx remove <name>              # Same as ccx delete <name>
ccx list                       # Same as ccx profiles

Interactive Wizard

Run:

ccx

The wizard is grouped into lightweight pages:

  • Install - install plugins from a profile
  • Profiles - create, list, and delete profiles
  • Plugins - add, remove, and list profile plugins
  • Marketplace - search installed plugin marketplaces
  • Help - print command usage

The wizard only runs in a real TTY. In scripts, CI, or agent execution environments, use the command form instead.

Profiles

Profiles are stored as JSON files under:

~/.ccx/profiles/

Example profile:

{
  "name": "dev",
  "plugins": [
    "cc-design",
    "browser"
  ]
}

Profile names may contain letters, numbers, dots, underscores, and hyphens.

Marketplace Search

ccx search <keyword> reads Claude plugin marketplaces from:

~/.claude/plugins/marketplaces/

Search matches plugin name, description, or category. Invalid marketplace files are skipped with a warning.

Requirements

  • Node.js 20.12 or newer
  • Claude Code CLI available as claude
  • Claude plugin marketplaces installed if you want marketplace search

Development

pnpm install
pnpm run build
pnpm test

Run from source:

pnpm run dev

Release

This package is published to npm from GitHub Releases.

  1. Bump package.json.
  2. Commit and push to master.
  3. Create a GitHub release tag like v0.1.10.
  4. The Publish to npm workflow builds and publishes the package.