Skip to main content
Commands

vg show

Explain a single code node: what it is, what it calls, and what calls it. The richest single-node view with callers, callees, and structural metadata.

Overview

vg show gives you the full picture for a single node: its kind, file location, signature, importance score, architectural area, the functions it calls (callees), and the functions that call it (callers).


Usage

vg show <name>
FlagDescription
<name>Qualified name, short name, file:line, glob, or id
--pick <n>Pick the nth candidate when multiple nodes match

Examples

vg show UserService
vg show src/auth/login.ts:42
vg show "UserService.createUser"

Related

  • vg tree — Call tree rooted at a node
  • vg impact — Blast radius for a change
  • vg facts — Deterministic facts for a node

Example use cases

Expand any use case to watch a live replay of the real @vibgrate/cli running against one of our test repositories. Nothing executes in your browser — these are recordings of actual runs, with the scan time shown as of now.

vg show <symbol>

Related Documentation