42 lines
748 B
Markdown
42 lines
748 B
Markdown
---
|
|
name: vocechat
|
|
description: VoceChat channel integration for OpenClaw
|
|
---
|
|
|
|
# VoceChat Skill
|
|
|
|
This skill provides integration with VoceChat self-hosted messaging platform.
|
|
|
|
## Usage
|
|
|
|
When users want to:
|
|
- Send messages via VoceChat
|
|
- Check VoceChat connection status
|
|
- Configure VoceChat settings
|
|
|
|
Use the `vocechat` channel tools.
|
|
|
|
## Configuration
|
|
|
|
Configure in `~/.openclaw/openclaw.json`:
|
|
|
|
```json5
|
|
{
|
|
channels: {
|
|
vocechat: {
|
|
enabled: true,
|
|
accounts: {
|
|
default: {
|
|
serverUrl: "https://your-vocechat-server.com",
|
|
botApiKey: "your-api-key",
|
|
wsServerUrl: "wss://your-vocechat-server.com/ws",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
```
|
|
|
|
## Commands
|
|
|
|
- `/vocechat:status` - Check connection status |