Unity Claude Code Skill banner
Ryan-focus Ryan-focus

Unity Claude Code Skill

AI community

Description

A Claude Code custom skill that turns Claude Code into a Unity AI development assistant — one-click MCP setup, auto-diagnosis, direct Unity Editor operations, rapid prototyping workflows, and C# script templates. Supports Unity Official MCP and Coplay MCP.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

**Language / 語言:** English | [한국어](i18n/ko/README.md) | [日本語](i18n/ja/README.md) | [繁體中文](i18n/zh-TW/README.md) | [简体中文](i18n/zh-CN/README.md)

unity-claude-code-skill

A **Claude Code Custom Skill** that turns Claude Code into a Unity AI development assistant — one-click MCP setup, auto-diagnosis, and direct Unity Editor operations via natural language.

**What is a Claude Code Skill?** Skills are filesystem-based instruction sets that Claude Code loads automatically when relevant. They live in a folder with a `SKILL.md` file and optional scripts/references. See [Claude Code Custom Skills docs](https://code.claude.com/docs/en/skills) for details.

What This Skill Does

Feature Description
One-click setup Auto-setup scripts configure MCP with a single command
Auto-diagnosis Detects and suggests fixes for connection issues
Unity operations Templates and workflows for controlling Unity via MCP tools
Rapid prototyping Step-by-step workflows for common game types
Script generation C# templates for PlayerController, GameManager, UI, and more

MCP Paths Supported

  • Path A — Unity Official MCP (com.unity.ai.assistant) — for Unity 6+
  • Path B — Coplay MCP (community) — for Unity 2022+

Repo Structure

unity-claude-code-skill/
├── SKILL.md                        # Core skill: setup + operations + workflows
├── README.md                       # This file
├── LICENSE                         # MIT
├── auto_setup.sh                   # One-click MCP setup (macOS/Linux)
├── auto_setup.ps1                  # One-click MCP setup (Windows)
├── unity_operations.md             # Detailed MCP tool reference & code templates
├── verify_setup.sh                 # Prerequisite checker (macOS/Linux)
├── verify_setup.ps1                # Prerequisite checker (Windows)
├── troubleshooting.md              # Common issues & fixes
├── .github/workflows/ci.yml        # C