From unity-cli
Manages Unity assets: dependency inspection, reference integrity checks, prefab/scriptable-object creation, and package add/remove via the `u` CLI.
How this skill is triggered — by the user, by Claude, or both
Slash command
/unity-cli:unity-assetThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **PREREQUISITE:** `../unity-shared/SKILL.md`(Relay Server 経由で Unity Editor が起動/アクティブであること)
PREREQUISITE:
../unity-shared/SKILL.md(Relay Server 経由で Unity Editor が起動/アクティブであること)skill 経由のコマンドは必ず
-i <instance>を付ける (unity-shared #インスタンス指定)。
1. アセット情報 u -i <instance> asset info <path>
2. 依存関係 u -i <instance> asset deps <path>
3. 参照元 u -i <instance> asset refs <path>
4. 問題検出 → 修正 → /unity-verify
u -i <instance> asset info "Assets/Prefabs/Player.prefab" # 基本情報
u -i <instance> asset deps "Assets/Prefabs/Player.prefab" # 依存先一覧
u -i <instance> asset refs "Assets/Prefabs/Player.prefab" # 参照元一覧
u -i <instance> asset prefab "Assets/Prefabs/X.prefab" --target "X" # Prefab 化
u -i <instance> asset scriptable-object "Assets/Data/Config.asset" --type "GameConfig"
u -i <instance> package list # インストール済みパッケージ
u -i <instance> package add com.unity.inputsystem # 追加
u -i <instance> package remove com.unity.inputsystem # 削除
unity-shared のフォールバック順に従う:
u -i <instance> api schema --type AssetDatabase で対応メソッドを検索 (107メソッド)u -i <instance> api call で実行npx claudepluginhub bigdra50/unity-cli --plugin unity-cliControls the Unity Editor from the terminal via the `ucp` CLI. Automates scenes, GameObjects, assets, builds, tests, packages, and profiling over a WebSocket/JSON-RPC bridge.
Explores and executes Unity API methods using `u api schema` for search and `u api call` for invoking public static methods. Fallback for operations not covered by existing CLI commands.
Unity 6 packages and services guide. Use when working with Package Manager, installing/updating packages, scoped registries, or Unity Gaming Services (Authentication, Cloud Save, Analytics, Leaderboards, Matchmaker). Covers essential packages list and version compatibility. Based on Unity 6.3 LTS documentation.