@xquik/tweetclaw 1.2.0 → 1.2.1
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/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/tweetclaw/SKILL.md +31 -6
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@ read_when:
|
|
|
11
11
|
- Extracting bulk data from X/Twitter (followers, replies, communities)
|
|
12
12
|
- Downloading tweet media or uploading images
|
|
13
13
|
- Sending DMs or updating X/Twitter profile
|
|
14
|
-
metadata: {"openclaw":{"emoji":"🐦","primaryEnv":"XQUIK_API_KEY","requires":{"env":["XQUIK_API_KEY"]}}}
|
|
14
|
+
metadata: {"openclaw":{"emoji":"🐦","primaryEnv":"XQUIK_API_KEY","requires":{"env":["XQUIK_API_KEY"]},"tags":["twitter","x","automation","social-media","tweets","scraping","giveaway","monitoring","rest-api"]}}
|
|
15
15
|
---
|
|
16
16
|
|
|
17
17
|
# TweetClaw
|
|
@@ -22,6 +22,27 @@ OpenClaw plugin for X/Twitter automation powered by Xquik. Install via:
|
|
|
22
22
|
openclaw plugins install @xquik/tweetclaw
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
## When to Use
|
|
26
|
+
|
|
27
|
+
Use TweetClaw when the user wants to:
|
|
28
|
+
|
|
29
|
+
- Post tweets, reply to tweets, or delete tweets
|
|
30
|
+
- Like, retweet, or follow/unfollow users
|
|
31
|
+
- Send DMs on X/Twitter
|
|
32
|
+
- Update their X profile, avatar, or banner
|
|
33
|
+
- Upload media and tweet with images
|
|
34
|
+
- Search tweets or look up user profiles
|
|
35
|
+
- Extract bulk data (followers, replies, communities, spaces)
|
|
36
|
+
- Run giveaway draws from tweet replies
|
|
37
|
+
- Monitor X accounts for new activity
|
|
38
|
+
- Compose algorithm-optimized tweets
|
|
39
|
+
- Analyze a user's writing style
|
|
40
|
+
- Check trending topics on X
|
|
41
|
+
- Download tweet media (images, videos, GIFs)
|
|
42
|
+
- Set up Telegram alerts for monitor events
|
|
43
|
+
|
|
44
|
+
Do NOT use TweetClaw for browsing X in a browser, analytics dashboards, scheduling future posts, or managing X ads.
|
|
45
|
+
|
|
25
46
|
## Configuration
|
|
26
47
|
|
|
27
48
|
Set your Xquik API key (get one at [xquik.com/account-manager](https://xquik.com/account-manager)):
|
|
@@ -200,9 +221,13 @@ Subscription ($20/month): write actions, search, media, extractions, draws, moni
|
|
|
200
221
|
|
|
201
222
|
When a paid endpoint returns 402, TweetClaw provides a checkout URL.
|
|
202
223
|
|
|
203
|
-
##
|
|
224
|
+
## Tips
|
|
204
225
|
|
|
205
|
-
-
|
|
206
|
-
-
|
|
207
|
-
-
|
|
208
|
-
-
|
|
226
|
+
- Use `explore` first to discover endpoints before calling `tweetclaw` - saves tokens and avoids guessing
|
|
227
|
+
- Free endpoints (compose, styles, radar, drafts) work without a subscription - always try them first
|
|
228
|
+
- Never combine free and paid API calls in the same `Promise.all` - a 402 on one call kills all results
|
|
229
|
+
- For write actions (post, like, follow, DM), always pass the `account` parameter with the X username
|
|
230
|
+
- Follow/unfollow/DM require a numeric user ID - look up the user first via `/api/v1/x/users/:username`
|
|
231
|
+
- On 402 errors, call `POST /api/v1/subscribe` to get a checkout URL instead of giving up
|
|
232
|
+
- Use `/xstatus` to quickly check subscription and usage without invoking the AI agent
|
|
233
|
+
- The compose workflow (compose/refine/score) is free and helps draft high-engagement tweets
|