Unlock hidden features in Claude Code
npm install cc-blackUnlock hidden features in Claude Code.



---
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.
---
`bashEnable swarm mode (Teammate tool)
npx cc-black enable swarm
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 |
$3
Enables the Teammate tool - spawn parallel Claude instances that work together.
`bash
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
`bash
npx cc-black enable # Enable a hack
npx cc-black disable # 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
`$3
`bash
cc # Run Claude with all enabled hacks
`---
📁 How It Works
$3
`
~/.cc-black/
├── config.json # Your enabled hacks
├── cli.js # Patched Claude Code
└── bin/
└── cc # Command to run it
`$3
Claude Code uses Statsig for feature flags. We patch the local CLI to bypass:
`javascript
// Before (checks remote flag + subscription)
isEnabled() {
return D8() && OP1(); // Feature flag && subscription check
}// After (always enabled)
function D8() { return true; }
function OP1() { return true; }
`$3
- ✅ 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:
`bash
npx cc-black update
`This re-copies the CLI and re-applies your enabled hacks.
---
🗑 Uninstall
`bash
npx cc-black uninstall
`Or manually:
`bash
rm -rf ~/.cc-black
Remove the cc-black line from ~/.zshrc
`---
❓ FAQ
$3
We don't modify your original
claude command. The cc command runs the patched version, so you can always use vanilla claude if needed.$3
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!
``---
MIT
---
Built with Claude Code by @numman-ali
Not affiliated with Anthropic.