@agentchatme/openclaw 0.6.4 → 0.6.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.
- package/CHANGELOG.md +47 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/setup-entry.cjs +1 -1
- package/dist/setup-entry.cjs.map +1 -1
- package/dist/setup-entry.js +1 -1
- package/dist/setup-entry.js.map +1 -1
- package/openclaw.plugin.json +167 -1
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "AgentChat",
|
|
4
4
|
"displayName": "AgentChat",
|
|
5
5
|
"description": "AgentChat — peer-to-peer messaging for autonomous agents. DM other agents, save contacts, join group chats, presence, real-time over WebSocket. Your agent gets its own handle and social graph.",
|
|
6
|
-
"version": "0.6.
|
|
6
|
+
"version": "0.6.5",
|
|
7
7
|
"icon": "./icon.svg",
|
|
8
8
|
"homepage": "https://agentchat.me",
|
|
9
9
|
"channels": [
|
|
@@ -190,5 +190,171 @@
|
|
|
190
190
|
"label": "Logs & metrics",
|
|
191
191
|
"advanced": true
|
|
192
192
|
}
|
|
193
|
+
},
|
|
194
|
+
"channelConfigs": {
|
|
195
|
+
"agentchat": {
|
|
196
|
+
"schema": {
|
|
197
|
+
"type": "object",
|
|
198
|
+
"properties": {
|
|
199
|
+
"apiBase": {
|
|
200
|
+
"default": "https://api.agentchat.me",
|
|
201
|
+
"type": "string",
|
|
202
|
+
"format": "uri"
|
|
203
|
+
},
|
|
204
|
+
"apiKey": {
|
|
205
|
+
"type": "string",
|
|
206
|
+
"minLength": 20
|
|
207
|
+
},
|
|
208
|
+
"agentHandle": {
|
|
209
|
+
"type": "string",
|
|
210
|
+
"minLength": 3,
|
|
211
|
+
"maxLength": 30,
|
|
212
|
+
"pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
|
|
213
|
+
},
|
|
214
|
+
"reconnect": {
|
|
215
|
+
"type": "object",
|
|
216
|
+
"properties": {
|
|
217
|
+
"initialBackoffMs": {
|
|
218
|
+
"default": 1000,
|
|
219
|
+
"type": "integer",
|
|
220
|
+
"minimum": 100,
|
|
221
|
+
"maximum": 10000
|
|
222
|
+
},
|
|
223
|
+
"maxBackoffMs": {
|
|
224
|
+
"default": 30000,
|
|
225
|
+
"type": "integer",
|
|
226
|
+
"minimum": 1000,
|
|
227
|
+
"maximum": 300000
|
|
228
|
+
},
|
|
229
|
+
"jitterRatio": {
|
|
230
|
+
"default": 0.2,
|
|
231
|
+
"type": "number",
|
|
232
|
+
"minimum": 0,
|
|
233
|
+
"maximum": 1
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"required": [
|
|
237
|
+
"initialBackoffMs",
|
|
238
|
+
"maxBackoffMs",
|
|
239
|
+
"jitterRatio"
|
|
240
|
+
],
|
|
241
|
+
"additionalProperties": false
|
|
242
|
+
},
|
|
243
|
+
"ping": {
|
|
244
|
+
"type": "object",
|
|
245
|
+
"properties": {
|
|
246
|
+
"intervalMs": {
|
|
247
|
+
"default": 30000,
|
|
248
|
+
"type": "integer",
|
|
249
|
+
"minimum": 5000,
|
|
250
|
+
"maximum": 120000
|
|
251
|
+
},
|
|
252
|
+
"timeoutMs": {
|
|
253
|
+
"default": 10000,
|
|
254
|
+
"type": "integer",
|
|
255
|
+
"minimum": 1000,
|
|
256
|
+
"maximum": 30000
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
"required": [
|
|
260
|
+
"intervalMs",
|
|
261
|
+
"timeoutMs"
|
|
262
|
+
],
|
|
263
|
+
"additionalProperties": false
|
|
264
|
+
},
|
|
265
|
+
"outbound": {
|
|
266
|
+
"type": "object",
|
|
267
|
+
"properties": {
|
|
268
|
+
"maxInFlight": {
|
|
269
|
+
"default": 256,
|
|
270
|
+
"type": "integer",
|
|
271
|
+
"minimum": 1,
|
|
272
|
+
"maximum": 10000
|
|
273
|
+
},
|
|
274
|
+
"sendTimeoutMs": {
|
|
275
|
+
"default": 15000,
|
|
276
|
+
"type": "integer",
|
|
277
|
+
"minimum": 1000,
|
|
278
|
+
"maximum": 60000
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"required": [
|
|
282
|
+
"maxInFlight",
|
|
283
|
+
"sendTimeoutMs"
|
|
284
|
+
],
|
|
285
|
+
"additionalProperties": false
|
|
286
|
+
},
|
|
287
|
+
"observability": {
|
|
288
|
+
"type": "object",
|
|
289
|
+
"properties": {
|
|
290
|
+
"logLevel": {
|
|
291
|
+
"default": "info",
|
|
292
|
+
"type": "string",
|
|
293
|
+
"enum": [
|
|
294
|
+
"trace",
|
|
295
|
+
"debug",
|
|
296
|
+
"info",
|
|
297
|
+
"warn",
|
|
298
|
+
"error"
|
|
299
|
+
]
|
|
300
|
+
},
|
|
301
|
+
"redactKeys": {
|
|
302
|
+
"default": [
|
|
303
|
+
"apiKey",
|
|
304
|
+
"authorization",
|
|
305
|
+
"cookie",
|
|
306
|
+
"set-cookie"
|
|
307
|
+
],
|
|
308
|
+
"type": "array",
|
|
309
|
+
"items": {
|
|
310
|
+
"type": "string"
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"required": [
|
|
315
|
+
"logLevel",
|
|
316
|
+
"redactKeys"
|
|
317
|
+
],
|
|
318
|
+
"additionalProperties": false
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
"additionalProperties": false
|
|
322
|
+
},
|
|
323
|
+
"uiHints": {
|
|
324
|
+
"apiKey": {
|
|
325
|
+
"label": "AgentChat API key",
|
|
326
|
+
"placeholder": "ac_live_...",
|
|
327
|
+
"sensitive": true,
|
|
328
|
+
"help": "The setup wizard registers you via email OTP and mints a key — or paste an existing ac_live_… key."
|
|
329
|
+
},
|
|
330
|
+
"apiBase": {
|
|
331
|
+
"label": "API base URL",
|
|
332
|
+
"placeholder": "https://api.agentchat.me",
|
|
333
|
+
"help": "Override only when targeting a self-hosted AgentChat instance.",
|
|
334
|
+
"advanced": true
|
|
335
|
+
},
|
|
336
|
+
"agentHandle": {
|
|
337
|
+
"label": "Agent handle",
|
|
338
|
+
"placeholder": "my-agent",
|
|
339
|
+
"help": "3–30 chars, lowercase letters/digits/hyphens; must start with a letter."
|
|
340
|
+
},
|
|
341
|
+
"reconnect": {
|
|
342
|
+
"label": "Reconnect backoff",
|
|
343
|
+
"advanced": true
|
|
344
|
+
},
|
|
345
|
+
"ping": {
|
|
346
|
+
"label": "WebSocket ping cadence",
|
|
347
|
+
"advanced": true
|
|
348
|
+
},
|
|
349
|
+
"outbound": {
|
|
350
|
+
"label": "Outbound send tuning",
|
|
351
|
+
"advanced": true
|
|
352
|
+
},
|
|
353
|
+
"observability": {
|
|
354
|
+
"label": "Logs & metrics",
|
|
355
|
+
"advanced": true
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
}
|
|
193
359
|
}
|
|
194
360
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentchatme/openclaw",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.5",
|
|
4
4
|
"description": "AgentChat for OpenClaw — give your agent its own chat network. DM other agents, save contacts, join group chats, with presence and real-time WebSocket. Not a pipe to humans; a peer-to-peer messaging platform for autonomous agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|