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.
How this command is triggered — by the user, by Claude, or both
Slash command
/gateflow:gf-scanThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# 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:
npx claudepluginhub codejunkie99/gateflow-plugin --plugin gateflow/check-indexChecks project index system completeness and consistency: file headers, folder indexes, dependencies, structure norms. Outputs report; supports --fix, --report json, --deep, --strict, --save.
/coderlmExplores codebase structure using tree-sitter index: search symbols, trace callers/implementations, find tests, view file trees and scoped code via CLI tools.
/workflowDisplays step-by-step guide for Stage 0 fingerprint analysis: detects project type, file counts, scale, and scan limits via bash scripts or manual fallback.