-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
51 lines (51 loc) · 1.44 KB
/
openclaw.plugin.json
File metadata and controls
51 lines (51 loc) · 1.44 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
{
"id": "openshart",
"name": "OpenShart Encrypted Memory",
"version": "0.1.0",
"kind": "memory",
"description": "AES-256-GCM encrypted memory with Shamir's Secret Sharing for AI agents.",
"entry": "./openclaw-plugin.js",
"configSchema": {
"type": "object",
"properties": {
"encryptionKey": {
"type": "string",
"description": "Hex or base64 encoded 32-byte encryption key"
},
"encryptionKeyEncoding": {
"type": "string",
"enum": ["hex", "base64"],
"description": "Encoding of the encryption key (default: hex)"
},
"securityLevel": {
"type": "string",
"enum": ["standard", "enterprise", "government", "classified"],
"description": "Security preset level"
},
"storagePath": {
"type": "string",
"description": "Directory path for SQLite database"
},
"useSQLite": {
"type": "boolean",
"description": "Use SQLite backend instead of in-memory"
},
"agentId": {
"type": "string",
"description": "Agent identifier for audit logging"
},
"department": {
"type": "string",
"description": "Department for hierarchical access control"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Default tags applied to all stored entries"
}
},
"additionalProperties": false
}
}