package-add

Add Unity packages from registries, Git URLs, or local paths.

Updated Aug 26, 2025
One-click install
npx skills add https://github.com/infotechsrealm/PanicAtThePond --skill package-add-infotechsrealm
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: package-add
Source: https://github.com/infotechsrealm/PanicAtThePond/tree/main/.claude/skills/package-add
Command: npx skills add https://github.com/infotechsrealm/PanicAtThePond --skill package-add-infotechsrealm

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires unity-mcp-cli, and includes scripts (resource) components.

What problem does it solve?

Manages the installation of Unity packages, streamlining the process of integrating new features or libraries into Unity projects.

Core Features & Use Cases

  • Unified Package Installation: Install packages from the Unity Package Manager registry, Git URLs, or local paths.
  • Manifest Modification: Directly modify manifest.json for package resolution and trigger domain reloads.
  • Use Case: Quickly add the latest version of a package or a specific version with version pinning, or integrate custom packages from local sources or Git repositories.

Quick Start

Install a Unity package by using the command: unity-mcp-cli run-tool package-add --input '{"packageId": "com.unity.textmeshpro"}'.

Frequently Asked Questions about package-add

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

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

You can install a Unity package from a Git URL or local path by running the unity-mcp-cli package-add command with the target package identifier. The tool updates manifest.json and triggers the resolution process.

How does modifying manifest.json integrate new Unity packages?

Modifying manifest.json integrates new Unity packages by registering their identifiers for the Unity Package Manager. This triggers domain reloads and the resolution process to fold the new libraries into your project.

Do I need unity-mcp-cli to install Unity packages?

Yes, unity-mcp-cli is a required dependency to install Unity packages using this tool. You must execute the CLI tool and provide proper package identifiers for it to modify manifest.json and trigger resolution successfully.

Can I pin a specific version when installing a Unity package?

Yes, you can pin a specific version when installing a Unity package. By providing the exact version identifier in the unity-mcp-cli command, the tool updates manifest.json to resolve and integrate that specific package version.

What is the best way to automate Unity package installation?

Automating Unity package installation is best handled by using a CLI tool to modify manifest.json directly. The unity-mcp-cli run-tool package-add command applies package identifiers and triggers resolution to streamline integration.