unity-project

Reads Unity project metadata including version, render pipeline, shaders, and UPM packages.

Updated Jan 29, 2026
One-click install
npx skills add https://github.com/Dylan8865/FinalYearProject --skill unity-project-dylan8865
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: unity-project
Source: https://github.com/Dylan8865/FinalYearProject/tree/main/GameDev/Tester/.agents/skills/unity-skills/skills/project
Command: npx skills add https://github.com/Dylan8865/FinalYearProject --skill unity-project-dylan8865

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Unity developers often need quick answers about project configuration—such as which Unity version is in use, which render pipeline is active, or which 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. - Asset & Package Inspection: List all available shaders and installed UPM packages with optional filtering. - Tag Management: Add custom tags to the project via the project_add_tag skill. - Use Case: When onboarding to an unfamiliar Unity project, ask for the project info to instantly learn the Unity version and render pipeline before writing any rendering code. ## Quick Start Ask the assistant to show the Unity project info including the current version and render pipeline.

Frequently Asked Questions about unity-project

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check the Unity version of a project programmatically?▼

Use the project_get_info skill, which returns project information including the Unity version and render pipeline. It takes no parameters and works in Approval, Auto, and Bypass modes since it is a read-only query.

How to detect which render pipeline a Unity project uses?▼

Call project_get_render_pipeline to get the current render pipeline type along with recommended shaders. This avoids manually inspecting Graphics settings or the manifest file.

Can I list installed UPM packages in a Unity project?▼

Yes, project_get_packages returns the full package manifest of installed UPM packages. It requires no parameters and executes directly in all approval modes.

Can this skill edit Unity Player Settings or build settings?▼

No, Player Settings and Build Settings are read-only through project_get_player_settings and project_get_build_settings. To edit them, use editor_execute_menu to open Edit/Project Settings or File/Build Settings.

Why does project_save or project_create not work?▼

Those skills do not exist in this module. Use scene_save or editor_execute_menu with File/Save to save, and create projects through Unity Hub rather than the REST API.