Skip to content
| Marketplace
Sign in
Visual Studio Code>Visualization>Code Intent Visualizer (No AI)New to Visual Studio Code? Get it now.
Code Intent Visualizer (No AI)

Code Intent Visualizer (No AI)

CodeLens Labs

|
1 install
| (0) | Free
Deterministic code understanding for VS Code using static analysis, dependency graphs, and developer-authored intent tags.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Code Intent Visualizer (No AI)

Code Intent Visualizer is a VS Code extension concept and scaffold for understanding codebases through deterministic static analysis instead of AI inference.

What it does

  • Parses TypeScript and JavaScript files with the TypeScript compiler API
  • Extracts functions, imports, exports, call relationships, and JSDoc intent tags
  • Builds a dependency graph across files and functions
  • Shows inline and hover context with CodeLensProvider and HoverProvider
  • Groups files by feature using directory structure like features/auth
  • Displays downstream impact analysis in a webview panel

Supported intent tags

Use JSDoc comments above functions or exported declarations:

/**
 * @intent Validate login credentials before API submission
 * @feature auth
 * @impact Changes affect sign-in and session bootstrap
 */
export async function submitLogin() {
  // ...
}

Current scope

This scaffold focuses on:

  • deterministic analysis
  • explainable relationships
  • incremental refresh hooks
  • a foundation for richer graph and flow visualization

Next ideas

  • Add Babel parsing for non-TypeScript syntax edge cases
  • Resolve non-relative imports using tsconfig.json path mappings
  • Add "find callers" and "find dependents" commands
  • Render richer flow lanes like function -> service -> api -> ui
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft