-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
109 lines (109 loc) · 2.37 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
109 lines (109 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"id": "chek-cli",
"name": "CHEK CLI",
"description": "Agent-native CHEK CLI and OpenClaw helpers for review rooms, AI product publication, and mention handling.",
"version": "0.2.0",
"skills": [
"./skills"
],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean"
},
"backendAppBaseUrl": {
"type": "string",
"minLength": 1
},
"accessToken": {
"type": "string"
},
"pollIntervalMs": {
"type": "integer",
"minimum": 2000,
"maximum": 60000
},
"sessionKey": {
"type": "string",
"minLength": 1
},
"installId": {
"type": "string"
},
"deviceId": {
"type": "string"
},
"authSessionId": {
"type": "string"
},
"deviceCode": {
"type": "string"
},
"authorizationStatus": {
"type": "string"
},
"authorizationUrl": {
"type": "string"
},
"authorizedUserOneId": {
"type": "string"
},
"authorizedDisplayName": {
"type": "string"
},
"lastAuthorizedAt": {
"type": "string"
}
}
},
"uiHints": {
"enabled": {
"label": "Enabled"
},
"backendAppBaseUrl": {
"label": "CHEK Backend URL",
"placeholder": "https://api-dev.chekkk.com/api/backend-app"
},
"accessToken": {
"label": "CHEK Access Token",
"sensitive": true,
"help": "If left empty, the plugin falls back to CHEK_ACCESS_TOKEN from the environment."
},
"pollIntervalMs": {
"label": "Poll Interval (ms)"
},
"sessionKey": {
"label": "OpenClaw Session Key",
"placeholder": "agent:main:chek:mentions"
},
"installId": {
"label": "Install ID"
},
"deviceId": {
"label": "Device ID"
},
"authSessionId": {
"label": "Auth Session ID"
},
"deviceCode": {
"label": "Device Code"
},
"authorizationStatus": {
"label": "Authorization Status"
},
"authorizationUrl": {
"label": "Authorization URL"
},
"authorizedUserOneId": {
"label": "Authorized User One ID"
},
"authorizedDisplayName": {
"label": "Authorized User"
},
"lastAuthorizedAt": {
"label": "Last Authorized At"
}
}
}