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

cc-black

v1.0.1

Published

Unlock hidden features in Claude Code

Downloads

140

Readme

Unlock hidden features in Claude Code.

npm version License Claude Code

Quick Start · Available Hacks · Commands · How It Works


What Is This?

Claude Code has features gated behind feature flags and gradual rollouts. CC-Black unlocks them.

┌─────────────────────────────────────────────────────────────┐
│                                                             │
│   🔒  Teammate Tool        →   🔓  UNLOCKED                 │
│   🔒  Session Memory       →   🔜  COMING SOON              │
│   🔒  Custom Keybindings   →   🔜  COMING SOON              │
│                                                             │
└─────────────────────────────────────────────────────────────┘

⚠️ Warning: Swarm mode spawns parallel agents that will consume tokens faster. Use wisely.


🚀 Quick Start

# Enable swarm mode (Teammate tool)
npx cc-black enable swarm

# Run Claude with hacks enabled
cc

That's it. The cc command runs Claude Code with all your enabled hacks.


🐝 Available Hacks

| Hack | Status | Description | |------|--------|-------------| | swarm | ✅ Available | Teammate tool for parallel agents | | memory | 🔜 Coming | Persistent memory across sessions | | keybinds | 🔜 Coming | Custom keyboard shortcuts |

Swarm Mode

Enables the Teammate tool - spawn parallel Claude instances that work together.

npx cc-black enable swarm

Then in Claude:

"Spawn a team of 3 agents to analyze this codebase"

Heads up: Multiple agents = multiple token streams. Great for speed, watch your usage.


🛠 Commands

npx cc-black enable <hack>    # Enable a hack
npx cc-black disable <hack>   # Disable a hack
npx cc-black list             # List available hacks
npx cc-black status           # Show what's enabled
npx cc-black update           # Re-patch after Claude updates
npx cc-black uninstall        # Remove everything

After Enabling

cc                            # Run Claude with all enabled hacks

📁 How It Works

The Architecture

~/.cc-black/
├── config.json       # Your enabled hacks
├── cli.js            # Patched Claude Code
└── bin/
    └── cc            # Command to run it

The Patches

Claude Code uses Statsig for feature flags. We patch the local CLI to bypass:

// Before (checks remote flag + subscription)
isEnabled() {
  return D8() && OP1();  // Feature flag && subscription check
}

// After (always enabled)
function D8() { return true; }
function OP1() { return true; }

What's Safe

  • ✅ Patches your local copy only
  • ✅ Doesn't touch the original claude command
  • ✅ Easy to uninstall

🔄 After Claude Updates

If Claude Code updates and things break:

npx cc-black update

This re-copies the CLI and re-applies your enabled hacks.


🗑 Uninstall

npx cc-black uninstall

Or manually:

rm -rf ~/.cc-black
# Remove the cc-black line from ~/.zshrc

❓ FAQ

Why cc instead of claude?

We don't modify your original claude command. The cc command runs the patched version, so you can always use vanilla claude if needed.

Does this work with native install?

Yes! CC-Black finds your Claude Code installation (npm or native) and patches a copy.


🤝 Contributing

Found another hidden feature? PRs welcome!

hacks/
├── swarm.js      # Teammate tool
├── memory.js     # Session memory (TODO)
└── your-hack.js  # Add yours!

📜 License

MIT


Built with Claude Code by @numman-ali

Not affiliated with Anthropic.