-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
27 lines (27 loc) · 832 Bytes
/
openclaw.plugin.json
File metadata and controls
27 lines (27 loc) · 832 Bytes
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
{
"id": "agent-secrets",
"name": "Agent Secrets",
"description": "Portable credential management for AI agents with age encryption, session-scoped leases, auto-rotation hooks, killswitch, and audit logging.",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"cli_path": {
"type": "string",
"description": "Path to the secrets CLI (defaults to 'secrets' in PATH)",
"default": "secrets"
},
"default_ttl": {
"type": "string",
"description": "Default lease TTL (e.g., '1h', '30m')",
"default": "1h"
},
"client_id_prefix": {
"type": "string",
"description": "Prefix for client IDs in audit logs",
"default": "openclaw"
}
}
},
"skills": ["skills/secret-management"]
}