-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
85 lines (85 loc) · 2.6 KB
/
openclaw.plugin.json
File metadata and controls
85 lines (85 loc) · 2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"id": "clawvoice",
"name": "ClawVoice",
"version": "0.1.0",
"description": "Voice agent plugin — give your OpenClaw agent a phone number",
"skills": ["./skills/voice"],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"voiceProvider": {
"type": "string",
"enum": ["deepgram"],
"default": "deepgram"
},
"telephonyProvider": {
"type": "string",
"enum": ["twilio", "telnyx"],
"default": "twilio"
},
"deepgram": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": { "type": "string" },
"model": { "type": "string", "default": "aura-2" },
"voice": { "type": "string", "default": "asteria" },
"language": { "type": "string", "default": "en" }
}
},
"twilio": {
"type": "object",
"additionalProperties": false,
"properties": {
"accountSid": { "type": "string" },
"authToken": { "type": "string" }
}
},
"telnyx": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": { "type": "string" },
"publicKey": { "type": "string" }
}
},
"serve": {
"type": "object",
"additionalProperties": false,
"properties": {
"port": { "type": "number", "default": 8000 },
"host": { "type": "string", "default": "127.0.0.1" }
}
},
"voiceModel": {
"type": "string",
"default": "anthropic/claude-haiku-4-5-20251001"
},
"greeting": {
"type": "string",
"default": "Hello! How can I help you today?"
},
"publicUrl": {
"type": "string",
"description": "Public URL for Twilio/Telnyx webhooks (e.g. Cloudflare Tunnel URL)"
},
"gatewayUrl": {
"type": "string",
"default": "http://127.0.0.1:18789"
},
"gatewayToken": {
"type": "string"
}
}
},
"uiHints": {
"deepgram.apiKey": { "label": "Deepgram API Key", "sensitive": true },
"twilio.accountSid": { "label": "Twilio Account SID" },
"twilio.authToken": { "label": "Twilio Auth Token", "sensitive": true },
"telnyx.apiKey": { "label": "Telnyx API Key", "sensitive": true },
"telnyx.publicKey": { "label": "Telnyx Public Key" },
"voiceModel": { "label": "Voice Agent Model", "placeholder": "anthropic/claude-haiku-4-5-20251001" },
"greeting": { "label": "Call Greeting", "placeholder": "Hello! How can I help you today?" }
}
}