@troykelly/openclaw-projects 0.0.52 → 0.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/openclaw.plugin.json +54 -2
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "openclaw-projects",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.53",
|
|
4
4
|
"name": "OpenClaw Projects Plugin",
|
|
5
5
|
"description": "Full-lifecycle agent backend: memory, projects, todos, contacts, terminal management, API integration, dev sessions, notes, communication, and namespace scoping",
|
|
6
6
|
"kind": "memory",
|
|
@@ -162,6 +162,12 @@
|
|
|
162
162
|
"pattern": "^https?://",
|
|
163
163
|
"description": "PromptGuard-2 classifier URL for multilingual injection detection (e.g., http://prompt-guard:8190)"
|
|
164
164
|
},
|
|
165
|
+
"agentId": {
|
|
166
|
+
"type": "string",
|
|
167
|
+
"pattern": "^[a-z0-9][a-z0-9._-]*$",
|
|
168
|
+
"maxLength": 63,
|
|
169
|
+
"description": "Explicit agent ID override (used as namespace fallback when hook context is unavailable)"
|
|
170
|
+
},
|
|
165
171
|
"namespace": {
|
|
166
172
|
"oneOf": [
|
|
167
173
|
{
|
|
@@ -192,6 +198,36 @@
|
|
|
192
198
|
}
|
|
193
199
|
],
|
|
194
200
|
"description": "Namespace configuration for data scoping"
|
|
201
|
+
},
|
|
202
|
+
"agentNamespaces": {
|
|
203
|
+
"type": "object",
|
|
204
|
+
"additionalProperties": {
|
|
205
|
+
"type": "object",
|
|
206
|
+
"properties": {
|
|
207
|
+
"default": {
|
|
208
|
+
"type": "string",
|
|
209
|
+
"pattern": "^[a-z0-9][a-z0-9._-]*$",
|
|
210
|
+
"maxLength": 63,
|
|
211
|
+
"description": "Namespace for store/create when none specified"
|
|
212
|
+
},
|
|
213
|
+
"recall": {
|
|
214
|
+
"type": "array",
|
|
215
|
+
"items": {
|
|
216
|
+
"type": "string",
|
|
217
|
+
"pattern": "^[a-z0-9][a-z0-9._-]*$",
|
|
218
|
+
"maxLength": 63
|
|
219
|
+
},
|
|
220
|
+
"description": "Namespaces to search when none specified"
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
"description": "Per-agent namespace overrides keyed by agent ID"
|
|
225
|
+
},
|
|
226
|
+
"namespaceRefreshIntervalMs": {
|
|
227
|
+
"type": "integer",
|
|
228
|
+
"minimum": 0,
|
|
229
|
+
"default": 300000,
|
|
230
|
+
"description": "Namespace refresh interval in ms (0 to disable dynamic namespace discovery)"
|
|
195
231
|
}
|
|
196
232
|
},
|
|
197
233
|
"additionalProperties": false,
|
|
@@ -350,10 +386,26 @@
|
|
|
350
386
|
"help": "URL for PromptGuard-2 classifier service (enables multilingual prompt injection detection)",
|
|
351
387
|
"group": "Advanced"
|
|
352
388
|
},
|
|
389
|
+
"agentId": {
|
|
390
|
+
"label": "Agent ID",
|
|
391
|
+
"placeholder": "my-agent",
|
|
392
|
+
"help": "Explicit agent ID override (used as namespace fallback when hook context is unavailable)",
|
|
393
|
+
"group": "Namespace"
|
|
394
|
+
},
|
|
353
395
|
"namespace": {
|
|
354
396
|
"label": "Namespace",
|
|
355
397
|
"help": "Namespace config for data scoping. Can be a string (shorthand for default) or { default, recall[] }.",
|
|
356
|
-
"group": "
|
|
398
|
+
"group": "Namespace"
|
|
399
|
+
},
|
|
400
|
+
"agentNamespaces": {
|
|
401
|
+
"label": "Per-Agent Namespaces",
|
|
402
|
+
"help": "Per-agent namespace overrides keyed by agent ID. Each value is { default, recall[] }.",
|
|
403
|
+
"group": "Namespace"
|
|
404
|
+
},
|
|
405
|
+
"namespaceRefreshIntervalMs": {
|
|
406
|
+
"label": "Namespace Refresh Interval",
|
|
407
|
+
"help": "How often to refresh namespace list from API in ms (0 to disable dynamic discovery)",
|
|
408
|
+
"group": "Namespace"
|
|
357
409
|
}
|
|
358
410
|
}
|
|
359
411
|
}
|