@xquik/tweetclaw 1.6.2 → 1.6.3
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/README.md +1 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/tweetclaw/SKILL.md +1 -1
- package/src/api-spec.ts +12 -12
package/README.md
CHANGED
|
@@ -146,12 +146,11 @@ Instant responses, no LLM needed:
|
|
|
146
146
|
When polling is enabled (default), TweetClaw checks for new events every 60 seconds and delivers them to your chat:
|
|
147
147
|
|
|
148
148
|
- **Monitor alerts**: New tweets, replies, quotes, retweets from monitored accounts
|
|
149
|
-
- **Follower changes**: Gained or lost followers on monitored accounts
|
|
150
149
|
|
|
151
150
|
Set up a monitor first:
|
|
152
151
|
|
|
153
152
|
```
|
|
154
|
-
You: "Monitor @elonmusk for new tweets and
|
|
153
|
+
You: "Monitor @elonmusk for new tweets, replies, and retweets"
|
|
155
154
|
```
|
|
156
155
|
|
|
157
156
|
## API Coverage
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "tweetclaw",
|
|
3
3
|
"name": "TweetClaw",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.3",
|
|
5
5
|
"description": "Post tweets, reply, like, retweet, follow, DM from your chat - full X/Twitter automation powered by Xquik. 111 endpoints, reads from $0.00015/call.",
|
|
6
6
|
"primaryCredential": "apiKey",
|
|
7
7
|
"alternateCredentials": ["tempoSigningKey"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xquik/tweetclaw",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "Post tweets, reply, like, retweet, follow, DM & more from OpenClaw - full X/Twitter automation via Xquik. 111 endpoints, reads from $0.00015/call.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -251,7 +251,7 @@ Agent uses tweetclaw -> estimates cost, creates extraction job
|
|
|
251
251
|
### Monitor an account
|
|
252
252
|
|
|
253
253
|
```
|
|
254
|
-
You: "Monitor @elonmusk for new tweets and
|
|
254
|
+
You: "Monitor @elonmusk for new tweets, replies, and retweets"
|
|
255
255
|
Agent uses tweetclaw -> creates monitor with event types
|
|
256
256
|
```
|
|
257
257
|
|
package/src/api-spec.ts
CHANGED
|
@@ -342,7 +342,7 @@ const API_SPEC: readonly EndpointInfo[] = [
|
|
|
342
342
|
},
|
|
343
343
|
{
|
|
344
344
|
category: 'extraction',
|
|
345
|
-
free:
|
|
345
|
+
free: true,
|
|
346
346
|
method: 'GET',
|
|
347
347
|
parameters: [PARAM_DRAW_ID],
|
|
348
348
|
path: '/api/v1/draws/:id',
|
|
@@ -351,7 +351,7 @@ const API_SPEC: readonly EndpointInfo[] = [
|
|
|
351
351
|
},
|
|
352
352
|
{
|
|
353
353
|
category: 'extraction',
|
|
354
|
-
free:
|
|
354
|
+
free: true,
|
|
355
355
|
method: 'GET',
|
|
356
356
|
parameters: [PARAM_DRAW_ID, PARAM_EXPORT_FORMAT],
|
|
357
357
|
path: '/api/v1/draws/:id/export',
|
|
@@ -411,7 +411,7 @@ const API_SPEC: readonly EndpointInfo[] = [
|
|
|
411
411
|
},
|
|
412
412
|
{
|
|
413
413
|
category: 'extraction',
|
|
414
|
-
free:
|
|
414
|
+
free: true,
|
|
415
415
|
method: 'GET',
|
|
416
416
|
parameters: [
|
|
417
417
|
PARAM_EXTRACTION_ID,
|
|
@@ -424,7 +424,7 @@ const API_SPEC: readonly EndpointInfo[] = [
|
|
|
424
424
|
},
|
|
425
425
|
{
|
|
426
426
|
category: 'extraction',
|
|
427
|
-
free:
|
|
427
|
+
free: true,
|
|
428
428
|
method: 'GET',
|
|
429
429
|
parameters: [PARAM_EXTRACTION_ID, PARAM_EXPORT_FORMAT],
|
|
430
430
|
path: '/api/v1/extractions/:id/export',
|
|
@@ -455,7 +455,7 @@ const API_SPEC: readonly EndpointInfo[] = [
|
|
|
455
455
|
},
|
|
456
456
|
{
|
|
457
457
|
category: 'monitoring',
|
|
458
|
-
free:
|
|
458
|
+
free: true,
|
|
459
459
|
method: 'GET',
|
|
460
460
|
parameters: [PARAM_MONITOR_ID],
|
|
461
461
|
path: '/api/v1/monitors/:id',
|
|
@@ -464,7 +464,7 @@ const API_SPEC: readonly EndpointInfo[] = [
|
|
|
464
464
|
},
|
|
465
465
|
{
|
|
466
466
|
category: 'monitoring',
|
|
467
|
-
free:
|
|
467
|
+
free: true,
|
|
468
468
|
method: 'PATCH',
|
|
469
469
|
parameters: [
|
|
470
470
|
PARAM_MONITOR_ID,
|
|
@@ -477,7 +477,7 @@ const API_SPEC: readonly EndpointInfo[] = [
|
|
|
477
477
|
},
|
|
478
478
|
{
|
|
479
479
|
category: 'monitoring',
|
|
480
|
-
free:
|
|
480
|
+
free: true,
|
|
481
481
|
method: 'DELETE',
|
|
482
482
|
parameters: [PARAM_MONITOR_ID],
|
|
483
483
|
path: '/api/v1/monitors/:id',
|
|
@@ -499,7 +499,7 @@ const API_SPEC: readonly EndpointInfo[] = [
|
|
|
499
499
|
},
|
|
500
500
|
{
|
|
501
501
|
category: 'monitoring',
|
|
502
|
-
free:
|
|
502
|
+
free: true,
|
|
503
503
|
method: 'GET',
|
|
504
504
|
parameters: [
|
|
505
505
|
{ description: 'Event ID', in: 'path', name: 'id', required: true, type: 'string' },
|
|
@@ -530,7 +530,7 @@ const API_SPEC: readonly EndpointInfo[] = [
|
|
|
530
530
|
},
|
|
531
531
|
{
|
|
532
532
|
category: 'monitoring',
|
|
533
|
-
free:
|
|
533
|
+
free: true,
|
|
534
534
|
method: 'PATCH',
|
|
535
535
|
parameters: [
|
|
536
536
|
PARAM_WEBHOOK_ID,
|
|
@@ -544,7 +544,7 @@ const API_SPEC: readonly EndpointInfo[] = [
|
|
|
544
544
|
},
|
|
545
545
|
{
|
|
546
546
|
category: 'monitoring',
|
|
547
|
-
free:
|
|
547
|
+
free: true,
|
|
548
548
|
method: 'DELETE',
|
|
549
549
|
parameters: [PARAM_WEBHOOK_ID],
|
|
550
550
|
path: '/api/v1/webhooks/:id',
|
|
@@ -553,7 +553,7 @@ const API_SPEC: readonly EndpointInfo[] = [
|
|
|
553
553
|
},
|
|
554
554
|
{
|
|
555
555
|
category: 'monitoring',
|
|
556
|
-
free:
|
|
556
|
+
free: true,
|
|
557
557
|
method: 'GET',
|
|
558
558
|
parameters: [PARAM_WEBHOOK_ID],
|
|
559
559
|
path: '/api/v1/webhooks/:id/deliveries',
|
|
@@ -562,7 +562,7 @@ const API_SPEC: readonly EndpointInfo[] = [
|
|
|
562
562
|
},
|
|
563
563
|
{
|
|
564
564
|
category: 'monitoring',
|
|
565
|
-
free:
|
|
565
|
+
free: true,
|
|
566
566
|
method: 'POST',
|
|
567
567
|
parameters: [PARAM_WEBHOOK_ID],
|
|
568
568
|
path: '/api/v1/webhooks/:id/test',
|