-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
36 lines (36 loc) · 1.16 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
36 lines (36 loc) · 1.16 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
{
"id": "topic-context",
"name": "Topic Context",
"description": "Loads mapped topic/channel context files into agent turns and defers status notices until after the turn.",
"version": "0.1.1",
"activation": {
"onStartup": true
},
"skills": [
"skills"
],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"workspaceDir": {
"type": "string",
"description": "Override the workspace directory that contains topics/topic-map.json. Defaults to the active agent workspace."
},
"statusMessages": {
"type": "string",
"enum": [
"off",
"after_message_sent"
],
"default": "after_message_sent",
"description": "When to send topic-context status notices. after_message_sent uses direct channel APIs after the normal outbound reply has left the transcript-critical path."
},
"loadedMessageTemplate": {
"type": "string",
"default": "📂 Context loaded: \"{name}\" ({file})",
"description": "Template for the context-loaded status notice. Supports {name}, {file}, and {path}."
}
}
}
}