-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
167 lines (167 loc) · 5.1 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
167 lines (167 loc) · 5.1 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"id": "clawvoice",
"name": "ClawVoice",
"description": "Voice calling for OpenClaw agents.",
"version": "1.1.3",
"kind": "channel",
"channels": ["voice"],
"skills": ["clawvoice"],
"entryPoint": "dist/index.js",
"configSchema": {
"type": "object",
"properties": {
"telephonyProvider": {
"type": "string",
"enum": ["telnyx", "twilio"],
"default": "twilio"
},
"voiceProvider": {
"type": "string",
"enum": ["deepgram-agent", "elevenlabs-conversational"],
"default": "elevenlabs-conversational"
},
"voiceSystemPrompt": {
"type": "string",
"default": "",
"description": "System prompt that defines the agent's persona and behavior on calls."
},
"inboundEnabled": {
"type": "boolean",
"default": true,
"description": "Accept inbound calls. Set to false for outbound-only."
},
"telnyxApiKey": {
"type": "string",
"description": "Required when telephonyProvider is telnyx."
},
"telnyxConnectionId": {
"type": "string",
"description": "Required when telephonyProvider is telnyx."
},
"telnyxPhoneNumber": {
"type": "string",
"description": "Required when telephonyProvider is telnyx."
},
"telnyxWebhookSecret": {
"type": "string"
},
"twilioAccountSid": {
"type": "string",
"description": "Required when telephonyProvider is twilio."
},
"twilioAuthToken": {
"type": "string",
"description": "Required when telephonyProvider is twilio."
},
"twilioPhoneNumber": {
"type": "string",
"description": "Required when telephonyProvider is twilio."
},
"twilioStreamUrl": {
"type": "string",
"description": "Public wss:// endpoint Twilio will stream call audio to. Required for Twilio calls."
},
"mediaStreamBind": {
"type": "string",
"default": "127.0.0.1",
"description": "Bind address for WebSocket media transport server. Defaults to loopback; set to 0.0.0.0 only if your tunnel runs on a different host."
},
"mediaStreamPort": {
"type": "number",
"default": 3101,
"description": "Port for WebSocket media transport server."
},
"mediaStreamPath": {
"type": "string",
"default": "/media-stream",
"description": "Path for WebSocket media transport server."
},
"deepgramApiKey": {
"type": "string",
"description": "Required when voiceProvider is deepgram-agent."
},
"deepgramVoice": {
"type": "string",
"default": "aura-asteria-en",
"description": "Default Deepgram Aura voice ID."
},
"elevenlabsApiKey": {
"type": "string",
"description": "Required when voiceProvider is elevenlabs-conversational."
},
"elevenlabsAgentId": {
"type": "string",
"description": "Required when voiceProvider is elevenlabs-conversational."
},
"elevenlabsVoiceId": {
"type": "string",
"description": "Override the agent's configured voice. Known voices: Eryn=DXFkLCBUTmvXpp2QwZjA (female, conversational), Mark=UgBBYS2sOqTuMpoF3BR0 (male, professional), Joseph=8fcyCHOzlKDlxh1InJSf (male, warm). Browse more at elevenlabs.io/voice-library."
},
"openaiApiKey": {
"type": "string",
"description": "Optional dedicated key for post-call analysis model."
},
"analysisModel": {
"type": "string",
"default": "gpt-4o-mini"
},
"mainMemoryAccess": {
"type": "string",
"enum": ["read", "none"],
"default": "none",
"description": "Use 'none' by default to avoid exposing primary agent memory in voice calls."
},
"autoExtractMemories": {
"type": "boolean",
"default": true
},
"maxCallDuration": {
"type": "number",
"default": 1800
},
"disclosureEnabled": {
"type": "boolean",
"default": true,
"description": "Speak an AI disclosure statement at call start."
},
"disclosureStatement": {
"type": "string",
"default": "Hello, this call is from an AI assistant calling on behalf of a user.",
"description": "Disclosure text spoken when disclosureEnabled is true."
},
"recordCalls": {
"type": "boolean",
"default": false
},
"amdEnabled": {
"type": "boolean",
"default": true
},
"restrictTools": {
"type": "boolean",
"default": true
},
"dailyCallLimit": {
"type": "number",
"default": 50,
"description": "Maximum outbound calls per day. 0 = unlimited."
},
"deniedTools": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"exec",
"browser",
"web_fetch",
"gateway",
"cron",
"sessions_spawn"
]
}
},
"required": [],
"additionalProperties": true
}
}