-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
85 lines (85 loc) · 3 KB
/
openclaw.plugin.json
File metadata and controls
85 lines (85 loc) · 3 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
{
"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": {
"daemonDbPath": {
"type": "string",
"description": "Path to the agent-receipts daemon's SQLite receipt database. Defaults to the daemon's platform default (AGENTRECEIPTS_DB env var or ~/.local/share/agent-receipts/receipts.db)."
},
"daemonPublicKeyPath": {
"type": "string",
"description": "Path to the agent-receipts daemon's Ed25519 public key (PEM). Used by ar_verify_chain to verify receipt signatures. Defaults to the daemon's platform default (AGENTRECEIPTS_KEY env var + .pub, or ~/.local/share/agent-receipts/signing.key.pub)."
},
"taxonomyPath": {
"type": "string",
"description": "Path to custom taxonomy mapping JSON"
},
"enabled": {
"type": "boolean",
"default": true
},
"parameterDisclosure": {
"oneOf": [
{ "type": "boolean" },
{ "type": "string", "enum": ["high"] },
{ "type": "array", "items": { "type": "string" } }
],
"description": "Deprecated under daemon mode — parameter disclosure is now controlled by the daemon's --parameter-disclosure flag. Setting this emits a startup warning and has no effect."
},
"dbPath": {
"type": "string",
"description": "Deprecated (Flavor A). Ignored in daemon mode — use daemonDbPath instead."
},
"keyPath": {
"type": "string",
"description": "Deprecated (Flavor A). Ignored in daemon mode — use daemonPublicKeyPath instead."
},
"daemonForwarding": {
"oneOf": [
{ "type": "boolean" },
{
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": { "type": "boolean" }
}
}
],
"description": "Deprecated (Flavor A). Ignored — forwarding is always enabled in daemon mode."
}
}
},
"uiHints": {
"daemonDbPath": {
"label": "Daemon Database Path",
"placeholder": "~/.local/share/agent-receipts/receipts.db",
"advanced": true
},
"daemonPublicKeyPath": {
"label": "Daemon Public Key Path",
"placeholder": "~/.local/share/agent-receipts/signing.key.pub",
"advanced": true
},
"taxonomyPath": {
"label": "Custom Taxonomy",
"placeholder": "path/to/taxonomy.json",
"advanced": true
},
"enabled": {
"label": "Enable Attestations",
"help": "Forward tool calls to the agent-receipts daemon for signing and storage"
},
"parameterDisclosure": {
"label": "Parameter Disclosure (deprecated)",
"help": "No effect in daemon mode. Use --parameter-disclosure on the daemon instead.",
"advanced": true
}
}
}