@bettercallclaude/cli
v2.0.0-alpha.1
Published
CLI for managing Better Call Claude plugins - install, enable, configure
Downloads
8
Maintainers
Readme
bcc - Better Call Claude Plugin Manager
CLI for managing Better Call Claude plugins - install, enable, configure.
Installation
npm install -g bccCommands
Install a Plugin
bcc install @bettercallclaude/plugin-anonymizeDownloads the plugin from npm, validates it, and registers it in ~/.bcc/plugins.json.
List Installed Plugins
bcc listShows all installed plugins with their status (enabled/disabled).
Enable/Disable a Plugin
bcc enable plugin-anonymize
bcc disable plugin-anonymizeToggle plugins on or off without uninstalling them.
Install Hooks
bcc install-hooksRegisters all enabled plugin hooks in Claude Code settings (~/.claude/settings.json).
Plugin Directory Structure
~/.bcc/
├── plugins/ # Installed plugins
│ ├── node_modules/
│ │ └── @bettercallclaude/
│ │ ├── plugin-anonymize/
│ │ └── plugin-security/
│ └── package-lock.json
├── plugins.json # Plugin registry
├── config/ # Plugin configurations
│ ├── plugin-anonymize.yaml
│ └── plugin-security.yaml
└── data/ # Plugin data
└── plugin-anonymize/Example Workflow
# Install the anonymization plugin
bcc install @bettercallclaude/plugin-anonymize
# Check it's installed
bcc list
# Install hooks into Claude Code
bcc install-hooks
# Now use Claude Code normally - hooks will run automaticallyCreating Plugins
See @bettercallclaude/sdk for documentation on creating plugins.
License
GPL-3.0
