Web UI Quick Start
Get started with CCCC using the Web interface.
Step 1: Start CCCC
Open a terminal and run:
bash
ccccThis starts both the daemon and the Web UI.
Step 2: Open the Web UI
Open your browser and navigate to:
http://127.0.0.1:8848/You should see the CCCC Web interface.
Step 3: Create a Working Group
- Click the + button in the sidebar
- Or attach an existing project:
bash
# In another terminal
cd /path/to/your/project
cccc attach .- Refresh the Web UI to see your new group
Step 4: Add Your First Agent
- Click Add Actor in the header
- Fill in the form:
- Actor ID: e.g.,
assistant - Runtime: Select your installed CLI (e.g., Claude)
- Runner: PTY (terminal) or Headless
- Actor ID: e.g.,
- Click Create
Step 5: Configure MCP (First Time Only)
If this is your first time using CCCC with this runtime:
bash
cccc setup --runtime claude # or codex, droid, etc.This configures the agent to communicate with CCCC.
Step 6: Start the Agent
- Find your agent in the tabs
- Click the Play button to start it
- Wait for the agent to initialize
The agent's terminal output appears in the tab.
Step 7: Send Your First Message
- Click the Chat tab
- Type a message in the input box:
Hello! Please introduce yourself. - Press Enter or click Send
Step 8: Watch the Agent Work
- Switch to the agent's tab to see terminal output
- Watch as the agent processes your request
- Responses appear in the Chat tab
Adding More Agents
To add a second agent for collaboration:
- Click Add Actor again
- Use a different ID (e.g.,
reviewer) - Optionally use a different runtime
- Start the agent
Now you can:
- Send to all: Just type a message
- Send to specific agent: Use
@assistantor@reviewer
Using the Context Panel
Click Context to open the side panel:
- Vision: Set the project goal
- Sketch: Document the approach
- Tasks: Track work items
- Notes: Record learnings
Agents can read and update this shared context.
Web UI Features
| Feature | How to Access |
|---|---|
| Switch groups | Click group in sidebar |
| Agent terminal | Click agent tab |
| Send message | Chat tab input |
| @mention | Type @ for autocomplete |
| Reply to message | Click reply icon |
| Settings | Gear icon in header |
| Theme | Click moon/sun icon |
Keyboard Shortcuts
| Shortcut | Action |
|---|---|
Ctrl+Enter / Cmd+Enter | Send message |
Enter | New line |
@ | Open mention menu |
Escape | Cancel reply / Close menu |
↑ ↓ | Navigate mention menu |
Tab / Enter | Select mention |
Troubleshooting
Web UI not loading?
Check daemon is running:
bashcccc daemon statusTry a different port:
bashCCCC_WEB_PORT=9000 cccc
Agent won't start?
- Check the terminal tab for errors
- Verify MCP setup:bash
cccc setup --runtime <name>
Can't see my project?
Run cccc attach . in your project directory, then refresh the Web UI.
Next Steps
- Workflows - Learn collaboration patterns
- Web UI Guide - Detailed UI documentation
- IM Bridge - Set up mobile access