From gateflow
Indexes SystemVerilog (.sv/.svh) files in project using Verilator or manual Glob/Read parsing. Reports total files, module names/locations, include dependencies, hierarchy, and errors.
npx claudepluginhub codejunkie99/gateflow-plugin --plugin gateflow# GateFlow Scan Command Index all SystemVerilog files in the current project to build a module database. ## Instructions 1. Use Verilator to quickly parse all SV files and surface modules: 2. Alternatively, manually discover SV files: - Use Glob to find all `**/*.sv` and `**/*.svh` files - Read each file to extract module declarations - Report the module hierarchy 3. Present results showing: - Total files found - Module names and their locations - Include file dependencies - Any parsing errors encountered
Index all SystemVerilog files in the current project to build a module database.
Use Verilator to quickly parse all SV files and surface modules:
verilator --lint-only -Wall *.sv 2>&1 | head -50
Alternatively, manually discover SV files:
**/*.sv and **/*.svh filesPresent results showing: