What problem does it solve? AI agents editing Unity projects often lack reliable context about scene structure, component usage, and script dependencies, leading to blind edits and broken references. This module provides 18 read-only analysis skills that gather scene, project, and script context before any modification happens. ## Core Features & Use Cases - Scene Analysis: Summarize scenes, run health checks, find hotspots like deep hierarchies or empty nodes, and diff lightweight snapshots. - Context Export: Export hierarchy, components, references, and optional code dependencies as structured context for downstream AI steps, or save a markdown scene report to disk. - Project and Script Analysis: Detect render pipeline, input, UI, packages, and test setup, analyze individual MonoBehaviour or ScriptableObject classes, and compute N-hop script dependency closures. - Use Case: Before refactoring a Unity feature, call scene_analyze for a broad diagnosis, script_dependency_graph to see which scripts must change, and scene_dependency_analyze to check what breaks if an object is deleted. ## Quick Start Ask the agent to run scene_analyze on the current Unity scene and summarize the findings, warnings, and suggested next skills.