forked from NateBJones-Projects/OB1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
72 lines (72 loc) · 2.04 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
72 lines (72 loc) · 2.04 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
{
"id": "nbj-ob1-agent-memory",
"name": "NBJ OB1 Agent Memory for OpenClaw",
"description": "Typed OpenClaw tools for governed Nate Jones OB1 memory recall, write-back, review, inspection, and trace debugging.",
"skills": ["./skills/openclaw-agent-memory"],
"kind": "memory",
"contracts": {
"tools": [
"openbrain_recall",
"openbrain_writeback",
"openbrain_report_usage",
"openbrain_inspect_memory",
"openbrain_list_review_queue",
"openbrain_review_memory",
"openbrain_get_recall_trace"
]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"required": [],
"properties": {
"endpoint": {
"type": "string",
"description": "Base URL for the OB1 Agent Memory API, without a trailing slash."
},
"accessKey": {
"description": "OB1 Agent Memory access key. Prefer an OpenClaw SecretRef so the key does not live in plaintext config.",
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"additionalProperties": false,
"required": ["source", "provider", "id"],
"properties": {
"source": {
"type": "string",
"enum": ["file", "exec"]
},
"provider": {
"type": "string"
},
"id": {
"type": "string"
}
}
}
]
},
"workspaceId": {
"type": "string",
"description": "Default OB1 workspace ID."
},
"projectId": {
"type": "string",
"description": "Default OB1 project ID."
},
"requireReviewByDefault": {
"type": "boolean",
"description": "Keep agent-written memory pending review by default.",
"default": true
},
"includeUnconfirmedRecall": {
"type": "boolean",
"description": "Allow unconfirmed memories in recall responses.",
"default": false
}
}
}
}