Skip to content

Getting Started

Get CCCC running in 10 minutes.

Choose Your Approach

CCCC offers two ways to get started:

Web UI Quick Start

Recommended for most users

  • Visual interface for managing agents
  • Point-and-click configuration
  • Real-time terminal view
  • Mobile-friendly

CLI Quick Start

For terminal enthusiasts

  • Full control via command line
  • Scriptable and automatable
  • Great for CI/CD integration
  • Power user features

Prerequisites

Both approaches require:

Installation

Upgrading from older versions

If you have an older version of cccc-pair installed (e.g., 0.3.x), you must uninstall it first:

bash
# For pipx users
pipx uninstall cccc-pair

# For pip users
pip uninstall cccc-pair

# Remove any leftover binaries if needed
rm -f ~/.local/bin/cccc ~/.local/bin/ccccd

Version 0.4.x Breaking Changes

Version 0.4.x has a completely different command structure from 0.3.x. The old init, run, bridge commands are replaced with attach, daemon, mcp, etc.

bash
python -m pip install --index-url https://pypi.org/simple \
  --extra-index-url https://test.pypi.org/simple \
  cccc-pair==0.4.0rc17

From Source

bash
git clone https://github.com/dweb-channel/cccc
cd cccc
pip install -e .

Verify Installation

bash
cccc doctor

This checks Python version, available runtimes, and system configuration.

Next Steps

Released under the Apache-2.0 License.