-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
63 lines (63 loc) · 1.86 KB
/
openclaw.plugin.json
File metadata and controls
63 lines (63 loc) · 1.86 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
{
"id": "openclaw-agent-receipts",
"name": "Agent Receipts",
"description": "Cryptographically signed audit trail for agent actions",
"contracts": {
"tools": ["ar_query_receipts", "ar_verify_chain"]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"dbPath": {
"type": "string",
"description": "Path to SQLite receipt database"
},
"keyPath": {
"type": "string",
"description": "Path to Ed25519 key pair JSON file"
},
"taxonomyPath": {
"type": "string",
"description": "Path to custom taxonomy mapping JSON"
},
"enabled": {
"type": "boolean",
"default": true
},
"parameterPreview": {
"oneOf": [
{ "type": "boolean" },
{ "type": "string", "enum": ["high"] },
{ "type": "array", "items": { "type": "string" } }
],
"description": "Selectively disclose action parameters in receipts"
}
}
},
"uiHints": {
"dbPath": {
"label": "Database Path",
"placeholder": "~/.openclaw/agent-receipts/receipts.db",
"advanced": true
},
"keyPath": {
"label": "Key Path",
"placeholder": "~/.openclaw/agent-receipts/keys.json",
"advanced": true
},
"taxonomyPath": {
"label": "Custom Taxonomy",
"placeholder": "path/to/taxonomy.json",
"advanced": true
},
"enabled": {
"label": "Enable Attestations",
"help": "Generate signed receipts for every tool call"
},
"parameterPreview": {
"label": "Parameter Preview",
"help": "Disclose specific action parameters in receipts. false = hashes only (default), true = all, \"high\" = high-risk only, or an array of action type strings. Listed fields are stored verbatim — do not list fields that may contain secrets."
}
}
}