@openclawline/clawline-setup 0.2.0 → 0.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/clawhub.json +81 -0
- package/package.json +11 -4
package/clawhub.json
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://clawhub.openclaw.ai/schema/skill-manifest/v1.json",
|
|
3
|
+
|
|
4
|
+
"name": "@openclawline/clawline-setup",
|
|
5
|
+
"version": "0.2.1",
|
|
6
|
+
"displayName": "ClawLine Setup",
|
|
7
|
+
"description": "通过对话一键安装并配置 ClawLine 手机 App 与 OpenClaw 的连接,无需任何命令行操作。",
|
|
8
|
+
"icon": "https://openclawline.com/assets/icon.png",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"homepage": "https://github.com/qtx0213/clawline/tree/main/plugin-setup",
|
|
11
|
+
|
|
12
|
+
"author": {
|
|
13
|
+
"name": "ClawLine Team",
|
|
14
|
+
"url": "https://openclawline.com"
|
|
15
|
+
},
|
|
16
|
+
|
|
17
|
+
"category": "Integration",
|
|
18
|
+
"tags": ["clawline", "mobile", "setup", "install", "pairing"],
|
|
19
|
+
|
|
20
|
+
"npm": {
|
|
21
|
+
"package": "@openclawline/clawline-setup",
|
|
22
|
+
"registry": "https://registry.npmjs.org"
|
|
23
|
+
},
|
|
24
|
+
|
|
25
|
+
"skills": [
|
|
26
|
+
{
|
|
27
|
+
"name": "clawline_install",
|
|
28
|
+
"displayName": "安装 ClawLine",
|
|
29
|
+
"description": "检查并安装 ClawLine Channel Plugin,引导配对手机 App。",
|
|
30
|
+
"triggerKeywords": [
|
|
31
|
+
"安装 clawline",
|
|
32
|
+
"安装clawline",
|
|
33
|
+
"帮我安装 clawline",
|
|
34
|
+
"装好 clawline",
|
|
35
|
+
"install clawline",
|
|
36
|
+
"setup clawline"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "clawline_set_uuid",
|
|
41
|
+
"displayName": "设置 ClawLine UUID",
|
|
42
|
+
"description": "更新 ClawLine 连接 UUID 并重启网关完成绑定。",
|
|
43
|
+
"triggerKeywords": [
|
|
44
|
+
"clawline.*uuid",
|
|
45
|
+
"uuid.*clawline",
|
|
46
|
+
"clawline 的 uuid 是",
|
|
47
|
+
"clawline uuid is"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "clawline_status",
|
|
52
|
+
"displayName": "ClawLine 状态",
|
|
53
|
+
"description": "查询 ClawLine 连接状态。",
|
|
54
|
+
"triggerKeywords": [
|
|
55
|
+
"clawline.*状态",
|
|
56
|
+
"clawline.*status",
|
|
57
|
+
"clawline 连接"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "clawline_disconnect",
|
|
62
|
+
"displayName": "断开 ClawLine",
|
|
63
|
+
"description": "清除 ClawLine 配对信息。",
|
|
64
|
+
"triggerKeywords": [
|
|
65
|
+
"断开 clawline",
|
|
66
|
+
"断开clawline",
|
|
67
|
+
"disconnect clawline"
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
|
|
72
|
+
"installTrigger": {
|
|
73
|
+
"keywords": [
|
|
74
|
+
"安装 clawline-setup",
|
|
75
|
+
"安装clawline-setup",
|
|
76
|
+
"install clawline-setup",
|
|
77
|
+
"帮我装 clawline-setup"
|
|
78
|
+
],
|
|
79
|
+
"confirmMessage": "即将安装 ClawLine Setup Skill(@openclawline/clawline-setup),这将允许通过对话安装和配置 ClawLine 手机 App 连接。确认安装?"
|
|
80
|
+
}
|
|
81
|
+
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclawline/clawline-setup",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "ClawLine Setup Skill for OpenClaw - bootstrapper that installs and configures the ClawLine Channel Plugin via conversation",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist",
|
|
9
|
-
"README.md"
|
|
9
|
+
"README.md",
|
|
10
|
+
"clawhub.json"
|
|
10
11
|
],
|
|
11
12
|
"engines": {
|
|
12
13
|
"node": ">=18.0.0"
|
|
@@ -16,11 +17,17 @@
|
|
|
16
17
|
"dev": "tsc --watch",
|
|
17
18
|
"prepublishOnly": "npm run build"
|
|
18
19
|
},
|
|
19
|
-
"keywords": [
|
|
20
|
+
"keywords": [
|
|
21
|
+
"openclaw",
|
|
22
|
+
"clawline",
|
|
23
|
+
"skill",
|
|
24
|
+
"setup",
|
|
25
|
+
"install"
|
|
26
|
+
],
|
|
20
27
|
"license": "MIT",
|
|
21
28
|
"repository": {
|
|
22
29
|
"type": "git",
|
|
23
|
-
"url": "https://github.com/qtx0213/clawline.git",
|
|
30
|
+
"url": "git+https://github.com/qtx0213/clawline.git",
|
|
24
31
|
"directory": "plugin-setup"
|
|
25
32
|
},
|
|
26
33
|
"dependencies": {},
|