@2en/clawly-plugins 1.30.0-beta.3 → 1.30.0-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,6 +12,13 @@
12
12
  apiKey: "${CLAWLY_MODEL_GATEWAY_API_KEY}",
13
13
  api: "openai-completions",
14
14
  models: [
15
+ {
16
+ id: "auto",
17
+ name: "auto",
18
+ input: ["text", "image"],
19
+ contextWindow: 262144,
20
+ maxTokens: 65535,
21
+ },
15
22
  {
16
23
  id: "moonshotai/kimi-k2.5",
17
24
  name: "moonshotai/kimi-k2.5",
@@ -33,6 +40,13 @@
33
40
  contextWindow: 1048576,
34
41
  maxTokens: 65536,
35
42
  },
43
+ {
44
+ id: "google/gemini-3.1-pro-preview",
45
+ name: "google/gemini-3.1-pro-preview",
46
+ input: ["text", "image"],
47
+ contextWindow: 1048576,
48
+ maxTokens: 65536,
49
+ },
36
50
  {
37
51
  id: "anthropic/claude-sonnet-4.6",
38
52
  name: "anthropic/claude-sonnet-4.6",
@@ -89,12 +103,12 @@
89
103
  },
90
104
  },
91
105
 
92
- // agents.defaults.modelswhich models the agent can use, display names,
93
- // and per-model overrides. The whitelist only constrains the UI model picker
94
- // and fallback lists.
106
+ // agents.defaults — model picker whitelist, display names, and tuning defaults.
107
+ // The whitelist constrains the UI model picker and fallback lists.
95
108
  agents: {
96
109
  defaults: {
97
110
  thinkingDefault: "off",
111
+ verboseDefault: "on",
98
112
  model: {
99
113
  primary: "clawly-model-gateway/anthropic/claude-sonnet-4.6",
100
114
  },
@@ -103,9 +117,11 @@
103
117
  fallbacks: [],
104
118
  },
105
119
  models: {
120
+ "clawly-model-gateway/auto": { alias: "Auto" },
106
121
  "clawly-model-gateway/moonshotai/kimi-k2.5": { alias: "Kimi K2.5" },
107
122
  "clawly-model-gateway/google/gemini-2.5-pro": { alias: "Gemini 2.5 Pro" },
108
123
  "clawly-model-gateway/google/gemini-3-pro-preview": { alias: "Gemini 3 Pro Preview" },
124
+ "clawly-model-gateway/google/gemini-3.1-pro-preview": { alias: "Gemini 3.1 Pro Preview" },
109
125
  "clawly-model-gateway/anthropic/claude-sonnet-4.6": { alias: "Claude Sonnet 4.6" },
110
126
  "clawly-model-gateway/anthropic/claude-opus-4.6": { alias: "Claude Opus 4.6" },
111
127
  "clawly-model-gateway/openai/gpt-5.4": { alias: "GPT-5.4" },
@@ -114,6 +130,94 @@
114
130
  "clawly-model-gateway/qwen/qwen3.5-plus-02-15": { alias: "Qwen 3.5 Plus" },
115
131
  "clawly-model-gateway/z-ai/glm-5": { alias: "GLM-5" },
116
132
  },
133
+ contextPruning: {
134
+ mode: "cache-ttl",
135
+ },
136
+ heartbeat: {
137
+ model: "clawly-model-gateway/moonshotai/kimi-k2.5",
138
+ lightContext: true,
139
+ },
140
+ memorySearch: {
141
+ provider: "openai",
142
+ model: "text-embedding-3-small",
143
+ remote: {
144
+ baseUrl: "${CLAWLY_MODEL_GATEWAY_BASE}/v1",
145
+ apiKey: "${CLAWLY_MODEL_GATEWAY_API_KEY}",
146
+ batch: { enabled: false },
147
+ },
148
+ },
149
+ },
150
+ },
151
+
152
+ // messages.tts — text-to-speech credentials + tuning defaults
153
+ messages: {
154
+ tts: {
155
+ auto: "tagged",
156
+ mode: "final",
157
+ provider: "elevenlabs",
158
+ summaryModel: "clawly-model-gateway/anthropic/claude-sonnet-4.6",
159
+ maxTextLength: 4000,
160
+ timeoutMs: 30000,
161
+ prefsPath: "~/.openclaw/settings/tts.json",
162
+ modelOverrides: { enabled: true },
163
+ elevenlabs: {
164
+ baseUrl: "${CLAWLY_MODEL_GATEWAY_BASE}/v1/elevenlabs",
165
+ apiKey: "${CLAWLY_MODEL_GATEWAY_API_KEY}",
166
+ voiceId: "DwwuoY7Uz8AP8zrY5TAo",
167
+ modelId: "eleven_multilingual_v2",
168
+ seed: 42,
169
+ applyTextNormalization: "auto",
170
+ languageCode: "en",
171
+ voiceSettings: {
172
+ stability: 0.5,
173
+ similarityBoost: 0.75,
174
+ style: 0.0,
175
+ useSpeakerBoost: true,
176
+ speed: 1.0,
177
+ },
178
+ },
179
+ },
180
+ },
181
+
182
+ // gateway.nodes — allowlist dangerous node commands so the AI agent can
183
+ // invoke them on connected Clawly nodes (browser, reminders, calendar, device).
184
+ gateway: {
185
+ nodes: {
186
+ allowCommands: [
187
+ // Browser commands (Mac nodes)
188
+ "browser.proxy",
189
+ "browser.navigate",
190
+ "browser.click",
191
+ "browser.type",
192
+ "browser.screenshot",
193
+ "browser.read",
194
+ "browser.tabs",
195
+ "browser.back",
196
+ "browser.scroll",
197
+ "browser.evaluate",
198
+ // Reminders + calendar (iOS nodes)
199
+ "reminders.add",
200
+ "calendar.add",
201
+ // Device permissions (iOS nodes)
202
+ "device.permissions",
203
+ "device.requestPermission",
204
+ ],
205
+ },
206
+ },
207
+
208
+ // tools.web.search — web search defaults
209
+ tools: {
210
+ web: {
211
+ search: {
212
+ provider: "perplexity",
213
+ perplexity: {
214
+ model: "perplexity/sonar-pro",
215
+ baseUrl: "${CLAWLY_MODEL_GATEWAY_BASE}/v1",
216
+ apiKey: "${CLAWLY_MODEL_GATEWAY_API_KEY}",
217
+ },
218
+ maxResults: 5,
219
+ timeoutSeconds: 30,
220
+ },
117
221
  },
118
222
  },
119
223
  }