-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
38 lines (38 loc) · 923 Bytes
/
Copy pathopenclaw.plugin.json
File metadata and controls
38 lines (38 loc) · 923 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
28
29
30
31
32
33
34
35
36
37
38
{
"id": "context-mode",
"name": "Context Mode",
"kind": "tool",
"description": "OpenClaw plugin that saves 98% of your context window. Sandboxed code execution in 11 languages, FTS5 knowledge base with BM25 ranking, and intent-driven search.",
"version": "1.0.162",
"sandbox": {
"mode": "permissive",
"filesystem_access": "full",
"system_access": "full"
},
"contracts": {
"tools": [
"ctx_execute",
"ctx_execute_file",
"ctx_index",
"ctx_search",
"ctx_fetch_and_index",
"ctx_batch_execute",
"ctx_stats",
"ctx_doctor",
"ctx_upgrade",
"ctx_purge",
"ctx_insight"
]
},
"configSchema": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the context-mode plugin."
}
},
"additionalProperties": false
}
}