ClawCuber Guide
Everything you need to raise your AI lobster
Product Overview
ClawCuber is an AI-native customer service platform. You create a 'lobster' — an AI agent that learns your business through conversation, then serves your customers 24/7 across multiple channels.
Quick Start (5 Minutes)
Step 1: Create Your Lobster (30s)
Go to Console → Click 'New Lobster' → Give it a name and personality.
Step 2: Set Its Soul (2min)
In the Soul tab, define your lobster's role, speaking style, and personality.
Step 3: Train It (2min)
Connect your Feishu app in the Channels tab, then chat with your lobster on Feishu.
Step 4: Deploy (30s)
Go to Widget tab → Copy the embed code → Paste into your website. Done!
Training Your Lobster
Training is as simple as chatting. Your lobster automatically extracts knowledge from conversations with you on Feishu.
Examples of what to teach:
- Our return policy is 30 days
- When customers ask about pricing...
- Never mention competitor products
- If someone is angry, apologize first
Knowledge Base
The Knowledge tab shows all Q&A pairs your lobster knows.
- Manual: Add Q&A pairs directly
- Auto-learned: From training conversations
Live Monitor
The Live Monitor shows all active conversations in real-time.
- Install as a desktop app (PWA)
- Browser push notifications with sound
- AI suggests replies while you chat
Human Handoff
When your lobster detects a complex issue, it triggers a handoff.
After you resolve the issue, release back to your lobster.
Multi-Channel
One lobster serves multiple channels:
- 💬 Feishu
- 🌐 Web Widget
- 🔌 API
- 🔷 DingTalk
- 💚 WeChat OA
- ✈️ Telegram (soon)
- 💼 Slack (soon)
DingTalk Training Channel
Train your lobster via DingTalk.
Step 1: Create DingTalk App
- Go to DingTalk Open Platform
- Create App → Enterprise Internal
- Fill in app name and description
Step 2: Enable Robot
- Add Capability → Robot
- Choose Stream Mode
Step 3: Get Credentials
- Copy AppKey and AppSecret
Step 4: Connect in Console
- Console → Channels → DingTalk
- Paste credentials → Connect
- Status shows ✅ Connected
Step 5: Start Training
- Open DingTalk → Chat with robot
- Example: Tell it your business hours
WeCom Training Channel
Train via WeCom.
Step 1
- Create WeCom app
- Note AgentID and Secret
- Find CorpID
Step 2
- Console → Channels → WeCom
- Fill in all fields
- Connect and copy Callback URL
Step 3
- App → Receive Messages → Set API
- Paste Callback URL
- Token + AESKey must match
- Save — WeCom verifies callback
Step 4
- Open WeCom → Chat with app
WeChat OA Customer Service
Connect WeChat OA for auto customer service.
Prerequisites
- Verified Service Account required
- Customer service API enabled
Step 1: Get Credentials
- Log in to mp.weixin.qq.com
- Settings → Basic Configuration
- Copy AppID and AppSecret
Step 2: Configure in Console
- Console → 📞 Customer Service
- Select your lobster
- Click WeChat OA card
- Fill in AppID, AppSecret, Token
- EncodingAESKey optional
- Save & Connect, note Callback URL
Step 3: Configure WeChat Server
- WeChat Platform → Server Configuration → Modify
- Paste Callback URL
- Same Token as Console
- EncodingAESKey matching
- Choose Plaintext Mode
- Submit → Enable
Step 4: Test
- Open WeChat → Message your OA
- Lobster replies within seconds!
- Check conversations in Console
WeCom Customer Service
WeCom Customer Service connects WeChat users to your lobster.
Prerequisites
- WeCom admin account
- Enable WeChat Customer Service
Step 1
- Create customer service account
- Note Open KF ID
Step 2
- Create internal app
- Enable CS API permission
- Set callback, get Token + AESKey
- Copy CorpID and Secret
Step 3
- Console → Customer Service → WeCom
- Fill in all fields
- Copy Callback URL to WeCom
- Save & Connect
Mini Program Customer Service
Auto-reply for Mini Program customer service.
Step 1
- Log in to Mini Program Platform
- Copy AppID and AppSecret
Step 2
- Console → Customer Service → Mini Program
- Fill in and Save
- Copy Callback URL
Step 3
- Add domain to server whitelist
- Set message push URL
Step 4
Add button in your Mini Program:
<button open-type="contact">Contact Customer Service</button>
Web Widget
One line of code:
<script src="https://www.clawcuber.com/widget.js" data-token="YOUR_TOKEN"></script>
Find your widget token in Console → Agent → Widget tab.
Analytics
Analytics dashboard shows conversation volume and channel distribution.
Scenario: E-Commerce
🛒
Train with product catalog, return policies, shipping info. Handles order inquiries, size recommendations, after-sales 24/7.
Scenario: Education
🎓
Answers course inquiries, handles enrollment, provides student support 24/7.
Scenario: SaaS Support
💻
Feed API docs, troubleshooting guides. Provides first-line tech support, escalates complex issues.
Scenario: API Integration
🔌
Build your lobster into your own app. Chat API for conversations, Management API for control.
API Authentication
Generate an API key in Console → Agent → API tab.
Authorization: Bearer YOUR_API_KEY
Base URL:
https://www.clawcuber.com/api/v1
Chat API
Send a message
POST /api/v1/chat
Content-Type: application/json
Authorization: Bearer YOUR_API_KEY
{
"message": "What are your business hours?",
"session_id": "optional-session-id"
}
Response
{
"reply": "Our business hours are 9 AM to 9 PM, Monday to Saturday.",
"session_id": "sess_abc123",
"tokens_in": 850,
"tokens_out": 32
}
Management API
Manage your lobster programmatically:
GET /api/v1/agent— Get agent infoPOST /api/v1/knowledge— Add knowledgeGET /api/v1/conversations— List conversationsGET /api/v1/analytics— Usage statistics