-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
40 lines (40 loc) · 930 Bytes
/
openclaw.plugin.json
File metadata and controls
40 lines (40 loc) · 930 Bytes
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
{
"name": "gbrain",
"version": "0.4.1",
"description": "Personal knowledge brain with Postgres + pgvector hybrid search",
"family": "bundle-plugin",
"configSchema": {
"database_url": {
"type": "string",
"required": true,
"description": "PostgreSQL connection URL (Supabase recommended)",
"uiHints": { "sensitive": true }
},
"openai_api_key": {
"type": "string",
"required": false,
"description": "OpenAI API key for embeddings (uses OPENAI_API_KEY env var if not set)",
"uiHints": { "sensitive": true }
}
},
"mcpServers": {
"gbrain": {
"command": "./bin/gbrain",
"args": ["serve"]
}
},
"skills": [
"skills/ingest",
"skills/query",
"skills/maintain",
"skills/enrich",
"skills/briefing",
"skills/migrate",
"skills/setup"
],
"openclaw": {
"compat": {
"pluginApi": ">=2026.4.0"
}
}
}