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-tweaks

v1.0.0

Published

Unlock hidden features in Claude Code

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-Hacks unlocks them.

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

⚠️ Disclaimer: Unofficial patches. Use at your own risk. Requires valid Claude Code subscription.


🚀 Quick Start

# Enable swarm mode (Teammate tool)
npx cc-hacks 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 | Requires | |------|--------|-------------|----------| | swarm | ✅ Available | Teammate tool for parallel agents | Max/Team/Enterprise | | memory | 🔜 Coming | Persistent memory across sessions | Any | | keybinds | 🔜 Coming | Custom keyboard shortcuts | Any |

Swarm Mode

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

npx cc-hacks enable swarm

Then in Claude:

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

🛠 Commands

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

After Enabling

cc                            # Run Claude with all enabled hacks

📁 How It Works

The Architecture

~/.cc-hacks/
├── 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)
function D8() {
  return V4("tengu_brass_pebble", false);
}

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

What's Safe

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

🔄 After Claude Updates

If Claude Code updates and things break:

npx cc-hacks update

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


🗑 Uninstall

npx cc-hacks uninstall

Or manually:

rm -rf ~/.cc-hacks
# Remove the cc-hacks 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-Hacks finds your Claude Code installation (npm or native) and patches a copy.

Is this against ToS?

We only modify local files. You still need a valid subscription. We're not bypassing payment - just enabling features that exist in the code.


🤝 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.