-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
122 lines (122 loc) · 4.13 KB
/
openclaw.plugin.json
File metadata and controls
122 lines (122 loc) · 4.13 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"id": "systematic-claw",
"postInstallHint": "⚠️ Plugin tool'larının çalışması için agent config'da tools.alsoAllow'a \"group:plugins\" ekleyin veya tek tek \"task_tracker\", \"plan_mode\", \"debug_tracker\" yazın. Hook'lar (gate'ler) bu ayar olmadan da çalışır.",
"uiHints": {
"enabled": {
"label": "Enabled",
"help": "Enable or disable the Systematic Engine plugin"
},
"gateMode": {
"label": "Gate Mode",
"help": "How hard gates behave: 'warn' logs warnings, 'block' actively prevents tool calls"
},
"taskTrackerEnabled": {
"label": "Task Tracker",
"help": "Enable hierarchical task tracking tool for agents"
},
"planModeEnabled": {
"label": "Plan Mode",
"help": "Enable plan-before-execute workflow enforcement"
},
"completionCheckEnabled": {
"label": "Completion Check",
"help": "Enable end-of-session completion checklist verification"
},
"memoryEnforcementEnabled": {
"label": "Memory Enforcement",
"help": "Warn when sessions end without writing to workspace memory files"
},
"debugTrackerEnabled": {
"label": "Debug Tracker",
"help": "Enable systematic 4-phase debugging protocol (evidence → hypothesize → test → resolve)"
},
"dbPath": {
"label": "Database Path",
"help": "Path to SQLite database for session state and audit logs"
},
"gateVerbosity": {
"label": "Gate Visibility",
"help": "How gate activity is shown to the agent: 'silent' (off), 'summary' (single line), 'verbose' (per-gate breakdown)"
},
"workspaceRoot": {
"label": "Workspace Root",
"help": "Path to your workspace directory. Default: ~/.openclaw/workspace"
},
"scaffoldOnFirstRun": {
"label": "Scaffold on First Run",
"help": "Create template files (STATE.md, MEMORY.md, SSOT_REGISTRY.md) if they don't exist on first plugin load"
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean"
},
"gateMode": {
"type": "string",
"enum": ["warn", "block"],
"default": "block"
},
"taskTrackerEnabled": {
"type": "boolean"
},
"planModeEnabled": {
"type": "boolean"
},
"completionCheckEnabled": {
"type": "boolean"
},
"memoryEnforcementEnabled": {
"type": "boolean"
},
"debugTrackerEnabled": {
"type": "boolean"
},
"workflowDetectionEnabled": {
"type": "boolean"
},
"dbPath": {
"type": "string"
},
"dangerousCommands": {
"type": "array",
"items": { "type": "string" },
"description": "Regex patterns for irreversible commands to hard-block (e.g., social media posts, destructive ops)"
},
"bootstrapSizeWarnKB": {
"type": "number",
"default": 28,
"description": "Warn when bootstrap file exceeds this size (KB)"
},
"bootstrapSizeBlockKB": {
"type": "number",
"default": 35,
"description": "Block when bootstrap file exceeds this size (KB)"
},
"propagationEnabled": {
"type": "boolean"
},
"dependencyMapPath": {
"type": "string",
"description": "Path to dependency map JSON for propagation checking"
},
"gateVerbosity": {
"type": "string",
"enum": ["silent", "summary", "verbose"],
"default": "summary",
"description": "Gate annotation visibility: silent (off), summary (1-line status), verbose (per-gate breakdown)"
},
"workspaceRoot": {
"type": "string",
"description": "Workspace root directory path. Default: ~/.openclaw/workspace. Gates that check workspace files (STATE.md, MEMORY.md, etc.) use this as the base path."
},
"scaffoldOnFirstRun": {
"type": "boolean",
"default": true,
"description": "Create template workspace files (STATE.md, MEMORY.md, SYSTEM/SSOT_REGISTRY.md) on first run if they don't exist. Includes onboarding guidance in first session."
}
}
}
}