-
Notifications
You must be signed in to change notification settings - Fork 216
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
110 lines (110 loc) · 3.22 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
110 lines (110 loc) · 3.22 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
{
"id": "openclaw-basic-memory",
"kind": "memory",
"contracts": {
"tools": [
"build_context",
"delete_note",
"edit_note",
"list_memory_projects",
"list_workspaces",
"memory_get",
"memory_search",
"move_note",
"read_note",
"schema_diff",
"schema_infer",
"schema_validate",
"search_notes",
"write_note"
]
},
"skills": [
"skills/memory-defrag",
"skills/memory-ingest",
"skills/memory-lifecycle",
"skills/memory-literary-analysis",
"skills/memory-metadata-search",
"skills/memory-notes",
"skills/memory-reflect",
"skills/memory-research",
"skills/memory-schema",
"skills/memory-tasks"
],
"uiHints": {
"project": {
"label": "Project Name",
"placeholder": "my-agent",
"help": "Basic Memory project name. Created automatically if it doesn't exist."
},
"memoryDir": {
"label": "Memory Directory",
"placeholder": "memory/",
"help": "Directory to index into the knowledge graph (relative to workspace)"
},
"memoryFile": {
"label": "Memory File",
"placeholder": "MEMORY.md",
"help": "Working memory file (searched but not indexed into BM)"
},
"bmPath": {
"label": "BM CLI Path",
"placeholder": "bm",
"help": "Path to the basic-memory CLI binary (default: 'bm')",
"advanced": true
},
"autoCapture": {
"label": "Auto-Capture",
"help": "Automatically index conversation content after each turn"
},
"captureMinChars": {
"label": "Capture Min Characters",
"placeholder": "10",
"help": "Minimum user/assistant text length before auto-capture indexes a turn",
"advanced": true
},
"autoRecall": {
"label": "Auto-Recall",
"help": "Automatically load relevant Basic Memory context when a session starts"
},
"recallPrompt": {
"label": "Recall Prompt",
"placeholder": "Check for active tasks and recent activity...",
"help": "Prompt used to gather initial Basic Memory context",
"advanced": true
},
"debug": {
"label": "Debug Logging",
"help": "Enable verbose debug logs",
"advanced": true
},
"projectPath": {
"label": "Project Path",
"placeholder": ".",
"help": "Filesystem path for Basic Memory project data (defaults to workspace root; relative paths resolve from workspace)",
"advanced": true
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"project": { "type": "string" },
"memoryDir": { "type": "string" },
"memory_dir": { "type": "string" },
"memoryFile": { "type": "string" },
"memory_file": { "type": "string" },
"bmPath": { "type": "string" },
"autoCapture": { "type": "boolean" },
"captureMinChars": { "type": "number", "minimum": 0 },
"capture_min_chars": { "type": "number", "minimum": 0 },
"autoRecall": { "type": "boolean" },
"auto_recall": { "type": "boolean" },
"recallPrompt": { "type": "string" },
"recall_prompt": { "type": "string" },
"debug": { "type": "boolean" },
"projectPath": { "type": "string" }
},
"required": []
}
}