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

pl-claude-settings

v0.4.0

Published

CLI to install and manage .claude settings from pl-claude-settings repository

Readme

pl-claude-settings

CLI tool to install and manage .claude settings for Claude Code.

CK version:

Prerequisites

This tool clones a private GitHub repository. You need the GitHub CLI authenticated:

# Install gh CLI (if not already installed)
brew install gh          # macOS
# or: https://cli.github.com/ for other platforms

# Authenticate with GitHub
gh auth login

# Verify access
gh auth status

Without gh CLI, the tool falls back to git clone which requires SSH keys or a personal access token configured for the private repo.

Installation

# Using bun
bun add -g pl-claude-settings

# Using npm
npm install -g pl-claude-settings

# Using pnpm
pnpm add -g pl-claude-settings

Commands

plcc init

Install .claude settings from repository.

plcc init                # Install to ./.claude/ (current directory)
plcc init -g             # Install to ~/.claude/ (global)
plcc init --force        # Overwrite all files including protected ones
plcc init --full         # Also install Python dependencies
plcc init --branch dev   # Use specific branch

plcc update

Update settings to latest version.

plcc update              # Pull latest and merge changes
plcc update --full       # Also install Python dependencies
plcc update --dry-run    # Preview changes without applying
plcc update --branch dev # Update from specific branch

plcc doctor

Health check for .claude installation.

plcc doctor

Checks: installation manifest, .claude/ directory, git, gh CLI auth, hooks, Python venv, settings.json validity.

plcc config

View and edit .ck.json configuration.

plcc config              # List all settings
plcc config list         # Same as above
plcc config get docs.maxLoc       # Get a value (dot-notation)
plcc config set docs.maxLoc 1000  # Set a value

File Categories

During init and update, files are handled by category:

| Category | Behavior | Examples | |----------|----------|---------| | Managed | Always overwritten | hooks/, skills/, rules/, agents/, scripts/, settings.json | | Protected | Never overwritten if exists | .env, settings.local.json, .mcp.json | | Ignored | Never copied | .git/, node_modules/, .venv/ |

What's Included

  • 14 agent configurations
  • 60+ skills
  • 12 hooks (session-init, privacy-block, etc.)
  • 5 rule sets (development, orchestration, documentation, etc.)
  • Statusline scripts (cjs, sh, ps1)
  • Utility scripts

Development

cd cli
bun install
bun run dev -- --help    # Run CLI in dev mode
bun test                 # Run tests
bun run build            # Build for distribution

License

MIT