Getting Started
Welcome to ccccctl! This guide will help you get started with managing Claude Code custom commands.
What is ccccctl?
ccccctl
(Claude Code Custom slash Commands Control) is a CLI tool that allows you to easily manage custom commands for Claude Code. You can add, remove, and list commands from a registry, supporting both local and GitHub registries.
Quick Start
Installation
Install ccccctl globally using npm:
bash
npm install -g ccccctl
Or use npx to run without installing:
bash
npx ccccctl --help
First Steps
List available commands to see what's in the registry:
bashccccctl list
Add a command from the registry to your project:
bashccccctl add history
Verify the command was added by checking your
.claude/commands/
directory:bashls .claude/commands/
That's it! You now have a custom command available in Claude Code.
Next Steps
- Learn more about Installation options
- Explore detailed Usage examples