Skip to main content
Searches the graph for all nodes matching the given symbol name (substring match, case-insensitive) and prints their call relationships. Similar to “Find Usages” in IDEs — without requiring a language server.

Synopsis

supermodel find <symbol> [flags]

Flags

FlagDescription
--kindFilter by node label: Function, File, Class, …
--forceRe-analyze even if cache is fresh
-o, --outputOutput format: human | json
-h, --helpHelp for find

Examples

# Find anything containing this name
supermodel find handleRequest

# Restrict to classes
supermodel find Client --kind Class

# JSON output for tool consumption
supermodel find parse -o json