-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
79 lines (79 loc) · 2.11 KB
/
openclaw.plugin.json
File metadata and controls
79 lines (79 loc) · 2.11 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
{
"id": "operator-kit",
"name": "Operator Kit",
"description": "Scaffold a full AI operator: identity, memory system, instincts, cron jobs, agent architecture, and trust ladder",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean"
},
"operatorName": {
"type": "string",
"default": "Assistant"
},
"ownerName": {
"type": "string",
"default": "User"
},
"workspacePath": {
"type": "string"
},
"enableMemorySystem": {
"type": "boolean",
"default": true
},
"enableInstincts": {
"type": "boolean",
"default": true
},
"enableCronJobs": {
"type": "boolean",
"default": false
},
"enableAgentRoles": {
"type": "boolean",
"default": false
},
"timezone": {
"type": "string",
"default": "America/New_York"
}
}
},
"uiHints": {
"operatorName": {
"label": "Operator Name",
"help": "The name of your AI operator (e.g., 'Imogen', 'Jarvis', 'Friday')"
},
"ownerName": {
"label": "Owner Name",
"help": "Your name — the operator will reference you by this"
},
"workspacePath": {
"label": "Workspace Path",
"help": "Where operator files live (default: ~/.openclaw/workspace)"
},
"enableMemorySystem": {
"label": "Memory System",
"help": "Daily logs + evergreen references for cross-session continuity"
},
"enableInstincts": {
"label": "Instinct Engine",
"help": "Confidence-weighted learned behaviors that evolve over time"
},
"enableCronJobs": {
"label": "Cron Jobs",
"help": "Starter cron jobs (morning briefing, nightly rundown, security check)"
},
"enableAgentRoles": {
"label": "Agent Roles",
"help": "Multi-agent architecture (orchestrator, coder, security, researcher)"
},
"timezone": {
"label": "Timezone",
"help": "IANA timezone for cron scheduling (e.g., America/New_York)"
}
}
}