@elizaos/plugin-twitter 1.2.19 → 1.2.21
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/dist/index.js +573 -487
- package/dist/index.js.map +1 -1
- package/package.json +87 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-twitter",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.21",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -96,13 +96,6 @@
|
|
|
96
96
|
"default": 120,
|
|
97
97
|
"sensitive": false
|
|
98
98
|
},
|
|
99
|
-
"TWITTER_SEARCH_ENABLE": {
|
|
100
|
-
"type": "boolean",
|
|
101
|
-
"description": "Enable timeline monitoring and interaction processing.",
|
|
102
|
-
"required": false,
|
|
103
|
-
"default": true,
|
|
104
|
-
"sensitive": false
|
|
105
|
-
},
|
|
106
99
|
"TWITTER_DRY_RUN": {
|
|
107
100
|
"type": "boolean",
|
|
108
101
|
"description": "When true, all Twitter actions are simulated and nothing is actually posted.",
|
|
@@ -110,7 +103,7 @@
|
|
|
110
103
|
"default": false,
|
|
111
104
|
"sensitive": false
|
|
112
105
|
},
|
|
113
|
-
"
|
|
106
|
+
"TWITTER_ENABLE_POST": {
|
|
114
107
|
"type": "boolean",
|
|
115
108
|
"description": "Enable autonomous tweet posting.",
|
|
116
109
|
"required": false,
|
|
@@ -215,7 +208,7 @@
|
|
|
215
208
|
"default": false,
|
|
216
209
|
"sensitive": false
|
|
217
210
|
},
|
|
218
|
-
"
|
|
211
|
+
"TWITTER_ENABLE_ACTIONS": {
|
|
219
212
|
"type": "boolean",
|
|
220
213
|
"description": "Enable timeline action processing and automated responses.",
|
|
221
214
|
"required": false,
|
|
@@ -242,6 +235,90 @@
|
|
|
242
235
|
"required": false,
|
|
243
236
|
"default": true,
|
|
244
237
|
"sensitive": false
|
|
238
|
+
},
|
|
239
|
+
"TWITTER_ENABLE_REPLIES": {
|
|
240
|
+
"type": "boolean",
|
|
241
|
+
"description": "Enable mention and reply handling.",
|
|
242
|
+
"required": false,
|
|
243
|
+
"default": true,
|
|
244
|
+
"sensitive": false
|
|
245
|
+
},
|
|
246
|
+
"TWITTER_ENABLE_DISCOVERY": {
|
|
247
|
+
"type": "boolean",
|
|
248
|
+
"description": "Enable discovery service for autonomous content discovery and growth.",
|
|
249
|
+
"required": false,
|
|
250
|
+
"default": false,
|
|
251
|
+
"sensitive": false
|
|
252
|
+
},
|
|
253
|
+
"TWITTER_MIN_FOLLOWER_COUNT": {
|
|
254
|
+
"type": "number",
|
|
255
|
+
"description": "Minimum follower count for accounts to follow in discovery service.",
|
|
256
|
+
"required": false,
|
|
257
|
+
"default": 100,
|
|
258
|
+
"sensitive": false
|
|
259
|
+
},
|
|
260
|
+
"TWITTER_MAX_FOLLOWS_PER_CYCLE": {
|
|
261
|
+
"type": "number",
|
|
262
|
+
"description": "Maximum accounts to follow per discovery cycle.",
|
|
263
|
+
"required": false,
|
|
264
|
+
"default": 5,
|
|
265
|
+
"sensitive": false
|
|
266
|
+
},
|
|
267
|
+
"TWITTER_MAX_ENGAGEMENTS_PER_RUN": {
|
|
268
|
+
"type": "number",
|
|
269
|
+
"description": "Maximum engagements per discovery/interaction cycle.",
|
|
270
|
+
"required": false,
|
|
271
|
+
"default": 10,
|
|
272
|
+
"sensitive": false
|
|
273
|
+
},
|
|
274
|
+
"TWITTER_ENGAGEMENT_INTERVAL": {
|
|
275
|
+
"type": "number",
|
|
276
|
+
"description": "Fixed interval for interactions (default: 30, used if MIN/MAX not set).",
|
|
277
|
+
"required": false,
|
|
278
|
+
"default": 30,
|
|
279
|
+
"sensitive": false
|
|
280
|
+
},
|
|
281
|
+
"TWITTER_ENGAGEMENT_INTERVAL_MIN": {
|
|
282
|
+
"type": "number",
|
|
283
|
+
"description": "Minimum minutes between engagements.",
|
|
284
|
+
"required": false,
|
|
285
|
+
"default": 20,
|
|
286
|
+
"sensitive": false
|
|
287
|
+
},
|
|
288
|
+
"TWITTER_ENGAGEMENT_INTERVAL_MAX": {
|
|
289
|
+
"type": "number",
|
|
290
|
+
"description": "Maximum minutes between engagements.",
|
|
291
|
+
"required": false,
|
|
292
|
+
"default": 40,
|
|
293
|
+
"sensitive": false
|
|
294
|
+
},
|
|
295
|
+
"TWITTER_DISCOVERY_INTERVAL_MIN": {
|
|
296
|
+
"type": "number",
|
|
297
|
+
"description": "Minimum minutes between discovery cycles.",
|
|
298
|
+
"required": false,
|
|
299
|
+
"default": 15,
|
|
300
|
+
"sensitive": false
|
|
301
|
+
},
|
|
302
|
+
"TWITTER_DISCOVERY_INTERVAL_MAX": {
|
|
303
|
+
"type": "number",
|
|
304
|
+
"description": "Maximum minutes between discovery cycles.",
|
|
305
|
+
"required": false,
|
|
306
|
+
"default": 30,
|
|
307
|
+
"sensitive": false
|
|
308
|
+
},
|
|
309
|
+
"TWITTER_POST_INTERVAL": {
|
|
310
|
+
"type": "number",
|
|
311
|
+
"description": "Fixed interval between posts (default: 120, used if MIN/MAX not set).",
|
|
312
|
+
"required": false,
|
|
313
|
+
"default": 120,
|
|
314
|
+
"sensitive": false
|
|
315
|
+
},
|
|
316
|
+
"TWITTER_TIMELINE_MODE": {
|
|
317
|
+
"type": "string",
|
|
318
|
+
"description": "Timeline mode: 'home' for regular timeline or other modes.",
|
|
319
|
+
"required": false,
|
|
320
|
+
"default": "home",
|
|
321
|
+
"sensitive": false
|
|
245
322
|
}
|
|
246
323
|
}
|
|
247
324
|
}
|