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

ccxl

v3.1.1

Published

ccxl (Claude Code XL) — Full-stack AI coding assistant configurator. Generate complete Claude Code, Cursor, Copilot, and Windsurf configs from a single scan.

Downloads

81

Readme

ccxl — Claude Code XL

v3.0.0-alpha — This is a complete TypeScript rewrite. v3 is not compatible with v2 configs. If you previously used ccxl, run ccxl init --dry-run first to preview what would change before writing anything.

Review before committing. ccxl generates smart defaults based on your project, but always review generated configs before committing them to your repo. Use --dry-run to preview, --preview to see file contents.

Full-stack AI coding assistant configurator. One scan generates complete configs for Claude Code, Cursor, GitHub Copilot, and Windsurf.

Install

npx ccxl init

Or install globally:

npm install -g ccxl

What It Does

Run ccxl init in any project. ccxl scans your codebase and generates:

Claude Code — settings.json (project-aware permissions), skills, hooks, agents, MCP servers, CLAUDE.md Cursor — .cursorrules + .cursor/rules/.mdc GitHub Copilot — copilot-instructions.md + .github/instructions/.instructions.md Windsurf — .windsurfrules + .windsurf/rules/*.md

All tuned to your specific project — detected languages, frameworks, databases, CI/CD, cloud providers, and more.

Commands

ccxl init                    # Scan project + generate all configs
ccxl init --dry-run          # Preview what would be generated
ccxl init --yes              # Skip prompts, use smart defaults
ccxl init --global           # Install universal configs to ~/.claude/
ccxl init --force            # Overwrite existing configs

ccxl generate settings       # Generate specific config layer
ccxl generate skills         # Generate skills only
ccxl generate all             # Generate everything
ccxl generate cross-tool     # Cursor + Copilot + Windsurf only

ccxl install user/repo       # Install community config package
ccxl registry search react   # Search for packages
ccxl registry list           # List installed packages

ccxl update                  # Check for config drift
ccxl update --apply          # Apply suggested updates

ccxl doctor                  # Run diagnostics
ccxl doctor --fix            # Auto-fix issues

ccxl config show             # Show current config
ccxl config set base org/repo # Set org base config
ccxl config check            # Check compliance

What Gets Detected

Languages: JavaScript, TypeScript, Python, Go, Rust, Java, Swift Frameworks: React, Next.js, Vue, Nuxt, Svelte, Angular, Express, Fastify, Prisma, Drizzle, Django, Flask, FastAPI, and 10+ more Package Managers: npm, yarn, pnpm, bun CI/CD: GitHub Actions, GitLab CI, CircleCI, Jenkins, Travis Cloud: AWS, GCP, Azure, Vercel, Netlify, Fly Databases: PostgreSQL, MySQL, SQLite, MongoDB, Redis, Elasticsearch Infrastructure: Docker, Docker Compose, monorepos (Turborepo, Nx, pnpm, Lerna)

What Gets Generated

Claude Code

  • settings.json — Fine-grained permissions matched to your stack
  • Skills — run-tests, review-code, generate-tests, explain-code, deploy, db-migrate, lint-fix, docker-build, ci-check
  • Hooks — Safety (block dangerous git, block .env deletion), auto-format, session context loading, pre-compaction context preservation
  • Agents — code-reviewer, explorer, test-runner, frontend-dev, api-developer, db-specialist, devops
  • MCP servers — PostgreSQL, SQLite, GitHub (auto-detected from project)
  • CLAUDE.md — Project-specific context (not boilerplate)

Cross-Tool (Cursor, Copilot, Windsurf)

Both legacy flat files and modern directory formats with proper YAML frontmatter:

  • Project overview rules (always on)
  • Code style rules (always on)
  • Testing rules (glob-matched to test files)
  • API rules (glob-matched to route files)
  • Component rules (glob-matched to component files)

Non-Destructive

ccxl can be added to any project at any stage. It merges with existing configs:

  • JSON files: permissions union, existing values preserved
  • Markdown, scripts, skills, agents: skipped if they already exist
  • Use --force to overwrite everything

Community Registry

Share and install config packages via GitHub:

# Install a package
ccxl install user/repo

# Search for packages
ccxl registry search security

# Publish your own
# 1. Create ccxl-package.json in your repo
# 2. Add topic "ccxl-package" on GitHub
# 3. Push — immediately installable

Team Governance

Set org-wide standards with base configs:

ccxl config set base my-org/standards
ccxl config check    # Verify compliance
ccxl doctor          # Includes governance check

Base configs enforce policies: required deny rules, disallowed permissions, mandatory hooks.

Requirements

  • Node.js >= 20.0.0

License

MIT