function-level control flow visualization with ast parsing
Parses function bodies using language-specific AST (Abstract Syntax Tree) analysis to extract control flow structures (conditionals, loops, exception handlers, async operations) and renders them as interactive flowcharts with node-level code navigation. The extension performs static analysis on the current file without executing code, identifying decision points and branching logic to construct a directed graph representation that updates in real-time as the developer edits.
Unique: Uses language-specific AST parsing (not regex-based pattern matching) to extract semantic control flow structures, enabling accurate visualization of nested conditionals, exception handlers, and async operations across 7 languages with real-time updates tied to editor keystroke events
vs alternatives: Faster and more accurate than manual code tracing or comment-based documentation because it parses actual syntax trees rather than relying on developer annotations or heuristic pattern matching
codebase dependency graph visualization with module classification
Analyzes import/require statements across the entire project to construct a directed graph of file and module dependencies, automatically classifying nodes into semantic categories (Core, Report, Config, Tool, Entry) based on naming patterns and import frequency. The visualization uses color-coded edges and high-contrast node styling to represent dependency relationships, enabling architects to understand project structure and identify circular dependencies or architectural violations without manual inspection.
Unique: Combines static import/require analysis with automatic semantic classification (Core, Report, Config, Tool, Entry) to produce architecture-aware dependency graphs that highlight structural patterns without requiring manual annotation or configuration
vs alternatives: More accessible than command-line tools like Madge or Depcheck because it integrates directly into VS Code with interactive navigation and real-time updates, and provides semantic classification that helps developers understand architectural intent
real-time flowchart auto-refresh on code edits
Monitors the active editor for keystroke and file-change events, triggering automatic re-analysis and re-rendering of flowcharts whenever the developer modifies code. The extension uses VS Code's onDidChangeTextDocument event to detect changes and re-parses the affected function or file, updating the visualization panel within milliseconds to reflect the current code state without requiring manual refresh commands.
Unique: Integrates with VS Code's onDidChangeTextDocument event to trigger incremental re-analysis rather than full-project re-parsing, enabling near-real-time visualization updates without requiring manual refresh or external build steps
vs alternatives: More responsive than external diagram tools (Miro, Lucidchart, PlantUML) because it runs locally in the editor context and updates automatically, eliminating the friction of manual export/import cycles
interactive code navigation from flowchart nodes
Each node in the flowchart is clickable and linked to its corresponding source code location via VS Code's editor API. Clicking a node jumps the editor cursor to the relevant line of code, enabling developers to navigate between visual representation and source without manual searching. The extension maintains bidirectional context — the flowchart shows the current function, and clicking nodes updates the editor position.
Unique: Bidirectional linking between flowchart nodes and source code via VS Code's editor API, enabling seamless context switching without leaving the IDE or using external tools
vs alternatives: More integrated than standalone diagram tools because it leverages VS Code's native editor capabilities to provide instant code navigation, eliminating the need to manually search for code corresponding to diagram elements
multi-language ast parsing with language-specific semantic analysis
Implements language-specific Abstract Syntax Tree (AST) parsers for 7 languages (Python, TypeScript/JavaScript, Java, C++, C, Rust, Go) that extract semantic information beyond simple syntax — including loop detection, exception handler identification, async operation tracking, and decision point classification. Each language uses a tailored parser (likely tree-sitter or language-specific libraries) to understand language-specific constructs (e.g., Python decorators, JavaScript async/await, Java try-catch-finally) and represent them accurately in flowcharts.
Unique: Implements language-specific AST parsers that understand semantic constructs beyond syntax (async/await, exception handlers, decorators, macros) rather than using a generic regex-based or syntax-highlighting approach, enabling accurate flowchart generation across 7 distinct languages
vs alternatives: More accurate than generic code analysis tools because it uses language-specific parsers that understand semantic meaning, not just syntactic patterns, resulting in correct visualization of language-specific control flow constructs
theme-aware visualization rendering with 9 built-in themes
Renders flowcharts and dependency graphs using color schemes that respect VS Code's active theme setting and provide 9 built-in theme options (Monokai, Catppuccin, GitHub, Solarized, One Dark Pro, Dracula, Material Theme, Nord, Tokyo Night). The extension dynamically applies theme colors to nodes, edges, and text based on the selected theme, ensuring visual consistency with the editor environment and supporting both light and dark mode workflows.
Unique: Provides 9 curated theme options that integrate with VS Code's native theme system, ensuring visual consistency between the editor and visualization panels without requiring manual color configuration
vs alternatives: More polished than generic diagram tools because it respects VS Code's theme ecosystem and provides curated color schemes optimized for code visualization, rather than forcing a single color palette
detachable panel windows for deep analysis
Allows developers to open flowchart or dependency graph visualizations in separate, detachable VS Code panel windows (not just the sidebar), enabling side-by-side comparison of multiple visualizations or full-screen focus on a single diagram. The extension uses VS Code's webview API to render visualizations in independent panels that can be repositioned, resized, or moved to secondary monitors.
Unique: Leverages VS Code's webview API to enable detachable, resizable panels that can be positioned independently from the main editor, supporting multi-monitor workflows and side-by-side analysis without external tools
vs alternatives: More flexible than sidebar-only visualization because it allows full-screen focus or multi-panel comparison, and integrates directly with VS Code's window management rather than requiring external diagram applications
zoom and pan controls for large flowcharts
Provides interactive zoom (in/out) and pan (drag) controls for navigating large or complex flowcharts and dependency graphs. Users can zoom to focus on specific subgraphs or pan to explore different regions of a large diagram without losing context. The implementation likely uses a canvas-based or SVG-based rendering with mouse event handlers for zoom and drag operations.
Unique: Implements canvas-based zoom and pan controls integrated directly into VS Code webviews, enabling smooth navigation of large graphs without external tools or plugins
vs alternatives: More responsive than exporting to external tools (Miro, Lucidchart) because zoom and pan operations are instant and don't require context switching
+1 more capabilities