Clawdbot Control UI
Manage your Clawdbot AI assistant with the web-based Control UI dashboard. Monitor sessions, configure agents, and view logs.
Clawdbot Control UI Overview
The Control UI is a web-based dashboard for managing your Clawdbot gateway. Monitor connections, configure agents, and troubleshoot issues from your browser.
Features
| Feature | Description |
|---|---|
| Dashboard | Overview of gateway status |
| Sessions | Active session management |
| Agents | Agent configuration |
| Logs | Real-time log viewer |
| Settings | Gateway settings |
Accessing Control UI
Enable in Config
{
"web": {
"enabled": true,
"controlUI": {
"enabled": true,
"path": "/"
}
}
}Default URL
http://localhost:3080Dashboard
Status Overview
The dashboard shows:
- Gateway uptime
- Active connections
- Message throughput
- Error rate
Quick Actions
- Start/stop gateway
- Restart agents
- Clear sessions
Sessions View
Active Sessions
View all active sessions:
| Column | Description |
|---|---|
| Session Key | Unique session identifier |
| Agent | Assigned agent |
| Channel | Message channel |
| Last Activity | Time of last message |
| Messages | Message count |
Session Actions
- View session history
- Clear session
- Export transcript
Agents View
Agent List
Manage configured agents:
| Column | Description |
|---|---|
| Agent ID | Unique identifier |
| Status | Running/stopped |
| Sessions | Active session count |
| Workspace | Workspace path |
Agent Configuration
Edit agent settings:
{
"agentId": "main",
"workspace": "~/.clawdbot/workspace",
"model": "claude-3-sonnet"
}Logs View
Log Levels
| Level | Description |
|---|---|
| ERROR | Error messages |
| WARN | Warnings |
| INFO | Information |
| DEBUG | Debug details |
Log Filtering
- Filter by level
- Filter by agent
- Search text
- Time range
Settings
Gateway Settings
Configure gateway from UI:
- Port settings
- Provider connections
- Tool permissions
- Session policies
Export/Import
- Export configuration
- Import configuration
- Reset to defaults
Authentication
Enable Auth
{
"web": {
"controlUI": {
"auth": {
"enabled": true,
"type": "basic"
}
}
}
}Auth Methods
| Method | Description |
|---|---|
basic | HTTP Basic Auth |
token | Bearer token |
oauth | OAuth 2.0 |
Customization
Theme
{
"web": {
"controlUI": {
"theme": "dark"
}
}
}Branding
{
"web": {
"controlUI": {
"title": "My Assistant",
"logo": "/path/to/logo.png"
}
}
}Next Steps
- Clawdbot Web Interface - Web overview
- Clawdbot Webchat - Chat widget
- Clawdbot Gateway - Gateway configuration