get_scene_insights
Parses Godot scene files to extract node hierarchy, attached scripts, and signal connections into structured JSON, enabling quick understanding of scene architecture without reading raw .tscn files.
Instructions
Understand a Godot scene file (.tscn): node hierarchy, attached scripts, and signal connections. Returns structured JSON so the agent can understand scene architecture without reading raw scene files.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scenePath | Yes | Path to the scene file (relative to project) | |
| projectPath | Yes | Path to the Godot project directory | |
| includeProperties | No | Include node properties in the structure (default: true) | |
| includeConnections | No | Include signal connections in the structure (default: true) | |
| includeScriptInsights | No | Include analysis for scripts attached to nodes (default: true) |