What problem does it solve? When working on a Unity project through an AI assistant, you often need quick answers about the project's configuration—what Unity version it uses, which render pipeline is active, what shaders and UPM packages are installed—without manually digging through Project Settings or manifest files. ## Core Features & Use Cases - Project Metadata Queries: Retrieve Unity version, render pipeline type, Player Settings, Build Settings, Layers, and Tags through read-only operations. - Asset & Package Inspection: List all available shaders with optional filtering and enumerate installed UPM packages from the project manifest. - Tag Management & Player Builds: Add custom Tags and trigger asynchronous player builds via BuildPipeline with job polling for BuildReport results. - Use Case: Ask "what render pipeline is this project using?" to instantly detect URP/HDRP/Built-in and get recommended shaders, or kick off a development build and poll the job status until the BuildReport summary is ready. ## Quick Start Ask the assistant to show the Unity version and render pipeline of the current project.