What problem does it solve? When working on a Unity project through an AI assistant, you often need quick answers about the project environment—what Unity version is running, which render pipeline is active, what shaders and 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, build settings, layers, tags, and Player Settings through read-only skills like project_get_info and project_get_render_pipeline. - Asset & Package Inspection: List all available shaders and installed UPM packages with optional filtering via project_list_shaders and project_get_packages. - Tag Management & Builds: Add custom tags with project_add_tag and trigger asynchronous player builds via build_player, polling the job endpoint for the BuildReport summary. - Use Case: Ask "what render pipeline is this project using?" and instantly get the pipeline type plus recommended shaders, or kick off a development build and monitor it asynchronously. ## Quick Start Ask the assistant to show the Unity version and current render pipeline of the open project.