@xquik/tweetclaw 1.0.2 → 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 +1 -1
- package/openclaw.plugin.json +6 -8
- package/package.json +12 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# TweetClaw
|
|
2
2
|
|
|
3
|
-
Post tweets, reply, like, retweet, follow, DM & more - directly from your chat. Full 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
|
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "tweetclaw",
|
|
3
3
|
"name": "TweetClaw",
|
|
4
|
-
"version": "1.0.0",
|
|
5
4
|
"description": "Post tweets, reply, like, retweet, follow, DM from your chat - full X/Twitter automation powered by Xquik",
|
|
6
|
-
"author": "Xquik",
|
|
7
|
-
"license": "MIT",
|
|
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.
|
|
3
|
+
"version": "1.0.3",
|
|
4
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"
|