-
Notifications
You must be signed in to change notification settings - Fork 489
Expand file tree
/
Copy pathplugin.manifest.json
More file actions
62 lines (62 loc) · 1.63 KB
/
Copy pathplugin.manifest.json
File metadata and controls
62 lines (62 loc) · 1.63 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
{
"id": "mempalace-memory",
"name": "MemPalace Memory",
"version": "1.0.0",
"description": "Example Squad memory provider plugin that describes a memory-palace-style knowledge layout.",
"authors": [
"Squad"
],
"license": "MIT",
"squad": ">=0.9.1",
"components": {
"memory": {
"provider": "mempalace",
"mode": "spatial",
"external": true
}
},
"repository": {
"type": "github",
"url": "https://github.com/MemPalace/mempalace"
},
"upstream": {
"package": "mempalace",
"registry": "pypi",
"installCommand": "pip install mempalace",
"docs": "https://github.com/MemPalace/mempalace"
},
"mcp": {
"available": true,
"server": "mempalace",
"entryPoint": "mempalace-mcp",
"installCommand": "mempalace-mcp --palace /path/to/palace",
"reason": "MemPalace provides an optional MCP server for external memory access. Squad records the metadata but does not start it."
},
"providers": [
{
"id": "mempalace",
"type": "memory",
"mode": "read-write",
"protocol": "mcp",
"description": "Spatial memory provider contract for durable rooms, shelves, trails, and landmarks.",
"artifact": "memory/providers/mempalace-provider.md",
"mcp": {
"server": "mempalace",
"tool": "memory-palace",
"capability": "spatial-memory"
},
"capabilities": [
"spatial-memory",
"durable-context",
"agent-learning-trails"
]
}
],
"files": [
{
"source": "memory/mempalace-provider.md",
"target": "memory/providers/mempalace-provider.md",
"type": "doc"
}
]
}