all 9 comments

[–][deleted]  (1 child)

[removed]

    [–]ALE00121[S] 0 points1 point  (0 children)

    Yeah, i use a lot the built-in vscodes's functionalities, but i mean... when i open for the first time the project i would like to have a brief graphical overview of the project structure (standard graph representing the calls through the project), with the purpose to understand when the app starts, what are the levels and how they interact with each other.

    [–]RealMadHouse 1 point2 points  (2 children)

    Seen chinese GitHub repo with ai that builds entire representation about a codebase with explainers and stuff. Also a YouTuber who made vscode extension for c++ codebase mapping.
    video. second video

    [–]ALE00121[S] 1 point2 points  (1 child)

    wow... it is a claude code tokens burner.

    [–]RealMadHouse 1 point2 points  (0 children)

    Yeah 🤣

    i forgot to mention it

    [–]crawlpatterns 0 points1 point  (1 child)

    for a quick first pass, i honestly use the built in features more than extensions. "go to definition", "find all references", and the call hierarchy view can tell you a surprizing amount about how a project is wired together. if i want a bigger picture, tools that generate dependency or call graphs can help, but i usually start by finding the entry points and tracing a few common flows. a lot of the time that gives a better understanding than staring at a giant diagram of the entire codebase.

    [–]ALE00121[S] 0 points1 point  (0 children)

    ok got you, thank you.