package-add

Install Unity packages from registry, Git URLs, or local paths.

3.8k|349|Updated Apr 2, 2025
One-click install
npx skills add https://github.com/IvanMurzak/Unity-MCP --skill package-add-ivanmurzak
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: package-add
Source: https://github.com/IvanMurzak/Unity-MCP/tree/main/Unity-MCP-Plugin/.claude/skills/package-add
Command: npx skills add https://github.com/IvanMurzak/Unity-MCP --skill package-add-ivanmurzak

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Install a package into a Unity project by updating the manifest.json and triggering dependency resolution, reducing manual configuration and errors.

Core Features & Use Cases

  • Install packages from the Unity Registry, a Git URL, or a local path.
  • Update manifest.json, trigger package resolution, and handle potential domain reloads.
  • Use with unity-mcp-cli run-tool package-add to automate package installation in CI pipelines or local workflows.

Quick Start

Install a package into a Unity project by running unity-mcp-cli run-tool package-add with the appropriate packageId.

Frequently Asked Questions about package-add

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

FAQPage Schema
How do I install a Unity package from a Git URL or local path?▼

You can install a Unity package from a Git URL or local path by validating the packageId, applying it to manifest.json, and triggering package resolution, which supports registry, Git, and local file paths.

Can I automate Unity package installation in a CI pipeline?▼

Yes, you can automate Unity package installation in CI pipelines by running the unity-mcp-cli run-tool package-add workflow, which validates the packageId, updates manifest.json, and triggers dependency resolution.

Does installing a Unity package through manifest.json trigger a domain reload?▼

Yes, updating manifest.json and triggering package resolution can cause a potential Unity domain reload, which this installation process handles automatically when adding new dependencies.

What is the best way to add a registry package to a Unity project without manual configuration?▼

The best way to add a registry package without manual configuration is using a single command that validates the packageId, writes directly to manifest.json, and triggers Unity package resolution automatically.

Why does my Unity package install fail when updating manifest.json manually?▼

Manual manifest.json updates often fail due to invalid packageId formats or untriggered dependency resolution; this tool prevents these errors by validating inputs and automatically triggering the package resolution workflow.