-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
111 lines (111 loc) · 3.54 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
111 lines (111 loc) · 3.54 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
{
"id": "openclaw-honcho",
"name": "Honcho Memory",
"kind": "memory",
"setup": {
"providers": [
{
"id": "honcho",
"envVars": ["HONCHO_API_KEY"]
}
]
},
"contracts": {
"tools": [
"honcho_session",
"honcho_context",
"honcho_search_conclusions",
"honcho_ask",
"honcho_search_messages",
"memory_search",
"memory_get"
]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": {
"type": "string",
"description": "Honcho API key (or set HONCHO_API_KEY env var)"
},
"workspaceId": {
"type": "string",
"description": "Honcho workspace ID (defaults to 'openclaw')"
},
"baseUrl": {
"type": "string",
"default": "https://api.honcho.dev"
},
"timeoutMs": {
"type": "integer",
"minimum": 1,
"description": "HTTP timeout in milliseconds for Honcho SDK requests. Useful for slower self-hosted local models."
},
"noisePatterns": {
"type": "array",
"items": { "type": "string" },
"description": "Additional substring patterns to skip messages. Built-in defaults (HEARTBEAT_OK, cron reminders, etc.) always apply."
},
"ownerObserveOthers": {
"type": "boolean",
"default": false,
"description": "Whether the owner peer observes agent messages. When true, Honcho models the user's awareness of assistant responses."
},
"disableDefaultNoisePatterns": {
"type": "boolean",
"default": false,
"description": "When true, built-in noise patterns are not applied — only noisePatterns entries are used."
},
"crossSessionSearch": {
"type": "boolean",
"default": true,
"description": "When true (default), memory_search/memory_get can return results from any session in the workspace. When false, results are scoped to the active session and its child sessions only."
}
}
},
"uiHints": {
"apiKey": {
"label": "Honcho API Key",
"sensitive": true,
"placeholder": "hc_...",
"help": "API key for Honcho (or use ${HONCHO_API_KEY})"
},
"workspaceId": {
"label": "Workspace ID",
"placeholder": "openclaw",
"help": "Honcho workspace ID"
},
"baseUrl": {
"label": "API Base URL",
"advanced": true,
"placeholder": "https://api.honcho.dev"
},
"timeoutMs": {
"label": "HTTP Timeout (ms)",
"advanced": true,
"placeholder": "60000",
"help": "Increase this for self-hosted Honcho deployments backed by slower local models."
},
"noisePatterns": {
"label": "Noise Patterns",
"advanced": true,
"help": "Additional substring patterns to filter. Messages containing any pattern are dropped before saving to Honcho."
},
"ownerObserveOthers": {
"label": "Owner Observes Agent",
"advanced": true,
"help": "When enabled, Honcho models the user as aware of the agent's responses. Default: off."
},
"disableDefaultNoisePatterns": {
"label": "Disable Default Noise Patterns",
"advanced": true,
"help": "When enabled, only custom noisePatterns entries are used — built-in defaults are skipped."
},
"crossSessionSearch": {
"label": "Cross-Session Search",
"advanced": true,
"help": "When enabled (default), memory tools can return results from any session in the workspace. Disable to scope results to the active session only."
}
}
}