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 🙏

© 2025 – Pkg Stats / Ryan Hefner

claude-manager

v1.5.4

Published

Terminal app for managing Claude Code settings, profiles, MCP servers, and skills

Readme

Claude Manager (cm)

A powerful terminal app for managing Claude Code settings, profiles, MCP servers, and skills. Switch between different AI providers, models, and configurations with a single command.

Version License

Features

  • 🔄 Profile Management - Create, edit, and switch between multiple Claude configurations
  • 🚀 Quick Launch - Select profile and launch Claude in one command
  • 🔌 MCP Server Registry - Search and add MCP servers from the official registry
  • 🎯 Skills Browser - Browse and install skills from 3 repositories
  • 📁 Per-Project Profiles - Auto-select profiles based on project directory
  • 🔢 Quick Select - Press 1-9 to instantly select profiles
  • 🔍 Fuzzy Search - Type to filter profiles
  • 📦 Profile Groups - Organize profiles by category
  • 🔄 Auto-Update Check - Get notified when Claude updates are available

Installation

Option 1: Homebrew (macOS)

brew tap faisalnazir/claude-manager
brew install claude-manager

Option 2: npm

npm install -g claude-manager

Option 3: curl

curl -fsSL https://raw.githubusercontent.com/faisalnazir/claude-manager/main/install.sh | bash

Requirements

Quick Start

cm              # Select profile interactively and launch Claude
cm -l           # Use last profile instantly
cm --yolo       # Launch with --dangerously-skip-permissions

Commands

Profile Management

| Command | Description | |---------|-------------| | cm | Interactive profile selection (1-9 quick select, type to filter) | | cm list | List all profiles | | cm new | Create new profile wizard | | cm edit <name\|num> | Edit profile in $EDITOR | | cm delete <name\|num> | Delete profile | | cm status | Show current settings, MCP servers, and skills |

MCP Servers

cm mcp              # Search MCP registry interactively
cm mcp github       # Search for "github" servers
cm mcp web          # Search for "web" servers

Select a server → Choose profile → Server config added to profile.

Skills

cm skills           # Browse and install skills

Skills are downloaded from 3 repositories:

Options

| Flag | Description | |------|-------------| | --last, -l | Use last profile without menu | | --skip-update | Skip Claude update check | | --yolo | Run Claude with --dangerously-skip-permissions | | -v, --version | Show version | | -h, --help | Show help |

Profiles

Profiles are stored in ~/.claude/profiles/*.json

Example Profile

{
  "name": "Z.AI (GLM)",
  "group": "providers",
  "env": {
    "ANTHROPIC_AUTH_TOKEN": "your-api-key",
    "ANTHROPIC_BASE_URL": "https://api.z.ai/api/anthropic",
    "API_TIMEOUT_MS": "3000000"
  },
  "model": "opus",
  "enabledPlugins": {
    "glm-plan-usage@zai-coding-plugins": true
  },
  "alwaysThinkingEnabled": true,
  "defaultMode": "bypassPermissions",
  "mcpServers": {
    "web-search": {
      "type": "http",
      "url": "https://api.z.ai/api/mcp/web_search_prime/mcp",
      "headers": {
        "Authorization": "Bearer your-api-key"
      }
    }
  }
}

Profile Fields

| Field | Description | |-------|-------------| | name | Display name | | group | Optional grouping (e.g., "providers", "work") | | env | Environment variables for Claude | | model | Model tier: "opus", "sonnet", "haiku" | | enabledPlugins | Plugins to enable | | alwaysThinkingEnabled | Enable extended thinking | | defaultMode | Permission mode | | mcpServers | MCP server configurations (per-profile) |

Supported Providers

Pre-configured in cm new:

| Provider | Base URL | |----------|----------| | Anthropic (Direct) | Default | | Amazon Bedrock | Default | | Z.AI | https://api.z.ai/api/anthropic | | MiniMax | https://api.minimax.io/anthropic | | Custom | Your URL |

Per-Project Profiles

Create .claude-profile in any directory with a profile name:

echo "Z.AI (GLM)" > /path/to/project/.claude-profile

When you run cm from that directory, it auto-selects that profile.

File Locations

| File | Purpose | |------|---------| | ~/.claude/profiles/*.json | Profile configurations | | ~/.claude/settings.json | Active Claude settings | | ~/.claude/skills/ | Installed skills | | ~/.claude.json | Global MCP servers | | ~/.claude/.last-profile | Last used profile | | .claude-profile | Per-project profile selector |

Tips

# Quick launch aliases
alias c="cm --skip-update"
alias cy="cm --skip-update --yolo"
alias cl="cm -l --skip-update"

# Edit profile by number
cm edit 1

# Check what's installed
cm status

# Update cm via npm
npm update -g claude-manager

How It Works

  1. Profile Selection: Choose a profile from the interactive menu
  2. Settings Applied: Profile config is written to ~/.claude/settings.json
  3. MCP Servers: Profile's MCP servers are written to ~/.claude.json
  4. Claude Launched: Claude Code starts with your selected configuration

Contributing

Pull requests welcome! Please ensure no API keys or sensitive data in commits.

License

MIT