-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (35 loc) · 1.26 KB
/
Copy pathmanifest.json
File metadata and controls
35 lines (35 loc) · 1.26 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
{
"name": "codegraphagent",
"display_name": "CodeGraphAgent",
"description": "Pre-indexed code knowledge graph (callers, callees, impact, trace) via a vendored CodeGraph engine. First use: call codegraphagent_check_engine to download the ~45 MB engine bundle (one-time, takes 30-60s). After that, the codegraph_* tools become available. Per-project index stored at <project>/.biorouter/codegraph/.",
"version": "0.1.0",
"entry_point": "codegraphagent",
"repository": "https://github.com/Broccolito/CodeGraphAgent",
"tools_count": 9,
"env_vars": [
{
"key": "CODEGRAPH_NO_WATCH",
"required": false,
"auto_propagate": true,
"default": "",
"description": "Set to 1 to disable the file watcher (slow filesystems like WSL2)",
"secret": false
},
{
"key": "CODEGRAPH_ENGINE_PATH",
"required": false,
"auto_propagate": false,
"default": "",
"description": "Path to an already-extracted engine bundle (skips first-use download for air-gapped/CI)",
"secret": false
},
{
"key": "CODEGRAPH_ENGINE_VERSION",
"required": false,
"auto_propagate": false,
"default": "",
"description": "Override the pinned CodeGraphAgent engine release",
"secret": false
}
]
}