Skip to content

Commands

Every command Dextree contributes to VS Code's command palette.

CommandWhat it doesAvailable
Dextree: Index WorkspaceIndex the current workspace into the embedded graphv0.1
Dextree: Open Graph ViewOpen the interactive WebGL graph webviewv0.1
Dextree: Export as MermaidExport the current view as a .mmd filev0.1
Dextree: Show Blast RadiusAnalyze impact of current branch vs mainv0.2
Dextree: Run Alfred Prompt…Run a markdown prompt template against the graphv0.4
Dextree: Export SummaryExport a session summary as Markdownv0.1 / S14

Running a command

All Dextree commands appear under the Dextree: prefix in the command palette:

text
Cmd+Shift+P  →  type "Dextree"

The first command you'll typically run is Dextree: Index Workspace — it parses every supported file in the current workspace and writes the result into the workspace's DuckDB graph file.

Keyboard shortcuts

Dextree doesn't bind any keyboard shortcuts by default. You can bind any command via VS Code's standard keybindings.json:

json
{
  "key": "cmd+shift+d",
  "command": "dextree.openGraphView"
}

Available command IDs follow the pattern dextree.<camelCase> — e.g. dextree.indexWorkspace, dextree.openGraphView, dextree.exportMermaid.

Status bar

When indexing is active, Dextree shows a status-bar item with the current progress and an estimated time-to-completion. Click the item to cancel an in-flight index.