@xquik/tweetclaw 1.0.1 → 1.0.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 +5 -5
- package/openclaw.plugin.json +7 -9
- package/package.json +13 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# TweetClaw
|
|
2
2
|
|
|
3
|
-
X/Twitter automation for [OpenClaw](https://github.com/
|
|
3
|
+
Post tweets, reply, like, retweet, follow, DM & more - directly from your chat. Full X/Twitter automation for [OpenClaw](https://github.com/openclaw/openclaw).
|
|
4
4
|
|
|
5
5
|
Powered by [Xquik](https://xquik.com), the all-in-one X automation platform.
|
|
6
6
|
|
|
@@ -89,13 +89,13 @@ You: "Monitor @elonmusk for new tweets and follower changes"
|
|
|
89
89
|
|
|
90
90
|
| Category | Examples |
|
|
91
91
|
|----------|---------|
|
|
92
|
-
| **
|
|
92
|
+
| **Write Actions** | Post tweets, reply, like, retweet, follow, unfollow, DM, update profile & avatar |
|
|
93
|
+
| **Media** | Upload media via URL, download tweet media, get gallery links |
|
|
93
94
|
| **Twitter** | Search tweets, look up users, check follow relationships |
|
|
95
|
+
| **Composition** | Compose, refine, score tweets; manage drafts; analyze writing styles |
|
|
94
96
|
| **Extraction** | Run extraction jobs (reply-extractor, community-explorer, etc.) |
|
|
95
97
|
| **Draws** | Run giveaway draws on tweets, export results |
|
|
96
98
|
| **Monitoring** | Create monitors, view events, manage webhooks |
|
|
97
|
-
| **Media** | Download tweet media, upload media via URL |
|
|
98
|
-
| **Write Actions** | Post tweets, like, retweet, follow, DM, update profile |
|
|
99
99
|
| **Account** | Manage API keys, subscription, connected X accounts |
|
|
100
100
|
| **Trends** | X trending topics, curated radar from multiple sources |
|
|
101
101
|
|
|
@@ -108,10 +108,10 @@ You: "Monitor @elonmusk for new tweets and follower changes"
|
|
|
108
108
|
- Integrations management
|
|
109
109
|
|
|
110
110
|
**Subscription ($20/month)** for full access:
|
|
111
|
+
- Write actions (post, reply, like, retweet, follow, DM, update profile)
|
|
111
112
|
- Tweet search, user lookup, media download
|
|
112
113
|
- Extractions, giveaway draws
|
|
113
114
|
- Account monitors, events, webhooks
|
|
114
|
-
- Write actions (post, like, retweet, follow, DM)
|
|
115
115
|
- X trending topics
|
|
116
116
|
|
|
117
117
|
When a paid endpoint returns 402, TweetClaw automatically provides a checkout URL.
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "tweetclaw",
|
|
3
3
|
"name": "TweetClaw",
|
|
4
|
-
"
|
|
5
|
-
"description": "X/Twitter automation powered by Xquik - search tweets, post, extract data, run giveaways, monitor accounts, compose with AI",
|
|
6
|
-
"author": "Xquik",
|
|
7
|
-
"license": "MIT",
|
|
4
|
+
"description": "Post tweets, reply, like, retweet, follow, DM from your chat - full X/Twitter automation powered by Xquik",
|
|
8
5
|
"configSchema": {
|
|
9
6
|
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
10
8
|
"properties": {
|
|
11
|
-
"apiKey": { "type": "string", "description": "Xquik API key (get one at xquik.com/account-manager)" },
|
|
9
|
+
"apiKey": { "type": "string", "minLength": 1, "description": "Xquik API key (get one at xquik.com/account-manager)" },
|
|
12
10
|
"baseUrl": { "type": "string", "default": "https://xquik.com" },
|
|
13
11
|
"pollingInterval": { "type": "number", "default": 60, "description": "Event polling interval in seconds" },
|
|
14
12
|
"pollingEnabled": { "type": "boolean", "default": true }
|
|
@@ -16,9 +14,9 @@
|
|
|
16
14
|
"required": ["apiKey"]
|
|
17
15
|
},
|
|
18
16
|
"uiHints": {
|
|
19
|
-
"apiKey": { "label": "Xquik API Key", "sensitive": true, "placeholder": "xq_..." },
|
|
20
|
-
"baseUrl": { "label": "API Base URL", "placeholder": "https://xquik.com" },
|
|
21
|
-
"pollingInterval": { "label": "Event Poll Interval (seconds)" },
|
|
22
|
-
"pollingEnabled": { "label": "Enable Event Notifications" }
|
|
17
|
+
"apiKey": { "label": "Xquik API Key", "sensitive": true, "placeholder": "xq_...", "help": "Generate at xquik.com/account-manager. Required for all API calls." },
|
|
18
|
+
"baseUrl": { "label": "API Base URL", "placeholder": "https://xquik.com", "advanced": true, "help": "Only change if using a self-hosted Xquik instance." },
|
|
19
|
+
"pollingInterval": { "label": "Event Poll Interval (seconds)", "advanced": true, "help": "How often to check for new monitor events. Default: 60 seconds." },
|
|
20
|
+
"pollingEnabled": { "label": "Enable Event Notifications", "advanced": true, "help": "Deliver monitor alerts and extraction completions to your chat." }
|
|
23
21
|
}
|
|
24
22
|
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xquik/tweetclaw",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "Post tweets, reply, like, retweet, follow, DM & more from OpenClaw - full X/Twitter automation via Xquik",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/Xquik-dev/tweetclaw.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/Xquik-dev/tweetclaw#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/Xquik-dev/tweetclaw/issues"
|
|
14
|
+
},
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=22"
|
|
17
|
+
},
|
|
7
18
|
"openclaw": {
|
|
8
19
|
"extensions": [
|
|
9
20
|
"./src/index.ts"
|