-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
71 lines (71 loc) · 1.94 KB
/
openclaw.plugin.json
File metadata and controls
71 lines (71 loc) · 1.94 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
{
"name": "creem-worker",
"id": "creem-worker",
"version": "1.0.0",
"description": "Autonomous Creem store monitor \u2014 smart alerts, MRR tracking, revenue analytics via Telegram",
"author": "Ash & Six",
"license": "MIT",
"entry": "index.ts",
"type": "extension",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": {
"type": "string",
"description": "Creem API key (creem_ for prod, creem_test_ for sandbox)"
},
"testMode": {
"type": "boolean",
"description": "Use test API (test-api.creem.io)",
"default": false
},
"pollIntervalMs": {
"type": "number",
"description": "Polling interval in milliseconds",
"default": 300000
},
"alertChatId": {
"type": "string",
"description": "Telegram chat ID for alerts"
},
"dbPath": {
"type": "string",
"description": "SQLite database path",
"default": "/opt/creem-worker/creem.db"
},
"statePath": {
"type": "string",
"description": "Snapshot state file path",
"default": "/opt/creem-worker/state.json"
},
"dailyDigestHour": {
"type": "number",
"description": "Hour (0-23) to send daily digest",
"default": 9
},
"webhookSecret": {
"type": "string",
"description": "Creem webhook HMAC secret (from Developers > Webhook). If empty, webhook listener is disabled."
},
"webhookPort": {
"type": "number",
"description": "Webhook listener port",
"default": 9444
},
"webhookPath": {
"type": "string",
"description": "Webhook URL path",
"default": "/webhook/creem"
},
"mrrAlerts": {
"type": "boolean",
"description": "Enable MRR change alerts",
"default": true
}
},
"required": [
"apiKey"
]
}
}