-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
60 lines (60 loc) · 1.8 KB
/
openclaw.plugin.json
File metadata and controls
60 lines (60 loc) · 1.8 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
{
"id": "openclaw-langfuse-plugin",
"configSchema": {
"type": "object",
"properties": {
"publicKey": {
"type": "string",
"description": "Langfuse public key (single target mode)"
},
"secretKey": {
"type": "string",
"description": "Langfuse secret key (single target mode)"
},
"baseUrl": {
"type": "string",
"default": "https://cloud.langfuse.com",
"description": "Langfuse server URL"
},
"targets": {
"type": "array",
"description": "Multiple Langfuse targets (overrides publicKey/secretKey)",
"items": {
"type": "object",
"properties": {
"name": { "type": "string", "description": "Target display name" },
"publicKey": { "type": "string" },
"secretKey": { "type": "string" },
"baseUrl": { "type": "string" }
},
"required": ["publicKey", "secretKey"]
}
},
"tags": {
"type": "array",
"items": { "type": "string" },
"default": ["openclaw"],
"description": "Tags to attach to all Langfuse traces (e.g. instance name, team)"
},
"environment": {
"type": "string",
"default": "default",
"description": "Langfuse environment label (e.g. production, staging, development)"
},
"userId": {
"type": "string",
"description": "userId prefix on traces (e.g. 'alice' → 'alice/openclaw-tui')"
},
"debug": {
"type": "boolean",
"default": false,
"description": "Enable debug logging"
},
"enabledHooks": {
"type": "array",
"items": { "type": "string" },
"description": "List of hooks to enable (if not set, all hooks are enabled)"
}
}
}
}