-
Notifications
You must be signed in to change notification settings - Fork 488
Expand file tree
/
Copy pathplugin.manifest.json
More file actions
69 lines (69 loc) · 1.88 KB
/
Copy pathplugin.manifest.json
File metadata and controls
69 lines (69 loc) · 1.88 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
{
"id": "graphify-knowledge",
"name": "Graphify Knowledge Graph",
"version": "1.0.0",
"description": "Example Squad knowledge plugin that documents integration with the safishamsi/graphify code knowledge graph tool.",
"authors": [
"Squad"
],
"license": "MIT",
"squad": ">=0.9.1",
"components": {
"knowledge": [
"graphify"
]
},
"repository": {
"type": "github",
"url": "https://github.com/safishamsi/graphify"
},
"upstream": {
"package": "graphifyy",
"registry": "pypi",
"installCommand": "uv tool install graphifyy",
"docs": "https://github.com/safishamsi/graphify"
},
"mcp": {
"available": false,
"reason": "Graphify is represented here as a CLI and Copilot skill integration, not a Squad-managed MCP memory provider."
},
"providers": [
{
"id": "graphify",
"type": "knowledge",
"mode": "read",
"protocol": "static-artifact",
"description": "Knowledge graph provider contract for code relationship guidance already materialized as static artifacts.",
"artifact": "knowledge/graphify/graphify-integration.md",
"capabilities": [
"knowledge-graph",
"code-relationship-analysis",
"static-report-guidance"
]
}
],
"runtime": {
"capabilities": [
{
"type": "artifact-generation",
"provider": "graphify",
"lifecycle": [
"onEnable",
"onMemoryRefresh"
],
"outputPaths": [
"knowledge/graphify/graph.json",
"knowledge/graphify/GRAPH_REPORT.md"
],
"description": "Generate deterministic static knowledge graph artifacts without installing or executing the external graphifyy CLI."
}
]
},
"files": [
{
"source": "knowledge/graphify-integration.md",
"target": "knowledge/graphify/graphify-integration.md",
"type": "doc"
}
]
}