@fwgi/openclaw-x-marketing 1.0.0
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 +69 -0
- package/SKILL.md +140 -0
- package/docs/ref-tools.md +369 -0
- package/docs/ref-workflow.md +193 -0
- package/index.ts +882 -0
- package/openclaw.plugin.json +43 -0
- package/package.json +26 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "x-marketing",
|
|
3
|
+
"name": "X营销管理助手",
|
|
4
|
+
"description": "X(Twitter) 营销管理助手 — 账号信息查看、受众管理(导入/筛选/分组/标签/营销活动)",
|
|
5
|
+
"version": "4.0.0",
|
|
6
|
+
"entry": "index.ts",
|
|
7
|
+
"skills": ["."],
|
|
8
|
+
"configSchema": {
|
|
9
|
+
"type": "object",
|
|
10
|
+
"additionalProperties": false,
|
|
11
|
+
"properties": {
|
|
12
|
+
"apiBaseUrl": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"description": "后端 API 地址",
|
|
15
|
+
"default": "https://api-backend.fwgi.ai"
|
|
16
|
+
},
|
|
17
|
+
"apiKey": {
|
|
18
|
+
"type": "string",
|
|
19
|
+
"description": "x-api-key 认证密钥"
|
|
20
|
+
},
|
|
21
|
+
"requestTimeoutMs": {
|
|
22
|
+
"type": "number",
|
|
23
|
+
"description": "请求超时时间(ms)",
|
|
24
|
+
"default": 30000
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"required": []
|
|
28
|
+
},
|
|
29
|
+
"uiHints": {
|
|
30
|
+
"apiBaseUrl": {
|
|
31
|
+
"label": "API Base URL",
|
|
32
|
+
"placeholder": "https://api-backend.fwgi.ai"
|
|
33
|
+
},
|
|
34
|
+
"apiKey": {
|
|
35
|
+
"label": "X API Key",
|
|
36
|
+
"sensitive": true,
|
|
37
|
+
"placeholder": "your-api-key"
|
|
38
|
+
},
|
|
39
|
+
"requestTimeoutMs": {
|
|
40
|
+
"label": "Request Timeout (ms)"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fwgi/openclaw-x-marketing",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "X(Twitter) 营销管理助手 OpenClaw 插件 — 账号信息、受众管理、营销活动",
|
|
6
|
+
"main": "index.ts",
|
|
7
|
+
"openclaw": {
|
|
8
|
+
"extensions": ["./index.ts"]
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"index.ts",
|
|
12
|
+
"openclaw.plugin.json",
|
|
13
|
+
"package.json",
|
|
14
|
+
"SKILL.md",
|
|
15
|
+
"README.md",
|
|
16
|
+
"docs/"
|
|
17
|
+
],
|
|
18
|
+
"keywords": ["x", "twitter", "marketing", "openclaw", "plugin", "fwgi"],
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=22.0.0"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
}
|
|
26
|
+
}
|