gitextract_tqzl_grq/ ├── .gitattributes ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── CLAUDE.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── TODO.md ├── ida-plugin.json ├── ida.h ├── prep-cmake.bat ├── qscripts.cpp ├── script.hpp ├── snippet_manager/ │ ├── README.md │ ├── pseudocode.cpp │ └── snippetmanager.py ├── test_addons/ │ ├── README.md │ ├── loader_template/ │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── driver.cpp │ │ ├── idasdk.h │ │ └── main.cpp │ ├── plugin_template/ │ │ ├── .claude/ │ │ │ └── agents/ │ │ │ └── ida-cmake.md │ │ ├── .gitignore │ │ ├── CLAUDE.md │ │ ├── CMakeLists.txt │ │ ├── driver.cpp │ │ ├── idasdk.h │ │ └── main.cpp │ ├── plugin_triton/ │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── driver.cpp │ │ ├── idasdk.h │ │ ├── junk64.bin.i64 │ │ ├── main.cpp │ │ ├── qscripts_native_triton.py │ │ └── qscripts_native_triton.py.deps.qscripts │ ├── qscripts_native.py │ └── qscripts_native.py.deps.qscripts ├── test_scripts/ │ ├── dependency-test/ │ │ ├── README.md │ │ ├── subdir/ │ │ │ ├── t4.py │ │ │ ├── t4.py.deps.qscripts │ │ │ └── t5.py │ │ ├── t1.py │ │ ├── t1.py.deps.qscripts │ │ ├── t2.py │ │ ├── t2.py.deps.qscripts │ │ └── t3.py │ ├── hello.idc │ ├── hello.py │ ├── notebooks/ │ │ ├── 0000 Imports and Init.py │ │ ├── 0000 Imports and Init.py.deps.qscripts │ │ ├── 0010 List functions.py │ │ ├── 0020 List segments.py │ │ ├── 0030 Show info.py │ │ ├── 0040 Set name.py │ │ ├── 0050 Set name.py │ │ ├── A0000 Init.py │ │ ├── A0000 Init.py.deps.qscripts │ │ ├── A0010 Cell 1.py │ │ ├── A0020 Cell 2.py │ │ ├── B0000 Init.py │ │ ├── B0000 Init.py.deps.qscripts │ │ ├── B0010 Cell 1.py │ │ ├── B0020 Cell 2.py │ │ └── README.md │ ├── pkg-dependency/ │ │ ├── README.md │ │ └── example.py.deps.qscripts │ └── trigger-file/ │ ├── dep.py │ ├── trigger.py │ └── trigger.py.deps.qscripts └── utils_impl.cpp