-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathida-plugin.json
More file actions
35 lines (35 loc) · 1.02 KB
/
ida-plugin.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"IDAMetadataDescriptorVersion": 1,
"plugin": {
"name": "IDAssist",
"entryPoint": "idassist_plugin.py",
"version": "2.0.0",
"description": "AI-powered reverse engineering plugin with LLM analysis, semantic knowledge graphs, RAG search, and SymGraph collaboration",
"license": "MIT",
"urls": {
"repository": "https://github.com/symgraph/IDAssist"
},
"authors": [
{
"name": "Jason Tang",
"email": "jason.tang@badc0ded.net"
}
],
"categories": ["integration-with-third-parties-interoperability", "api-scripting-and-automation"],
"idaVersions": ["9.1", "9.2", "9.3", "9.4"],
"logoPath": "docs/screenshots/icon.png",
"keywords": ["llm", "ai", "reverse-engineering", "analysis", "knowledge-graph", "symgraph"],
"pythonDependencies": [
"openai",
"anthropic",
"pysqlite3",
"markdown",
"httpx",
"anyio>=4.6",
"mcp==1.23.3",
"whoosh",
"aiohttp",
"pywin32; platform_system == \"Windows\""
]
}
}