用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Besty0728/Unity-Skills --skill unity-script命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Automate the Unity Editor through a local REST API — create and edit scripts, build scenes and prefabs, manage assets/materials/lighting, run tests, and drive hundreds of Editor operations across modules. Use when the user wants to actually operate the Unity Editor from chat — create or modify GameObjects/scripts/scenes/assets, batch-edit, or run Editor automation — in any language. Not needed for conceptual Unity Q&A that touches no Editor state — read the matching advisory doc under skills/ instead. 当用户要从对话里实际操作 Unity 编辑器(创建/修改/批量编辑/运行测试)时使用,任何语言均可触发;纯概念问答无需本协议。
Unified batch and async-job orchestration
Index of all Unity Skills modules with per-module mode labels (SA/FA/Mixed). Use to find which module covers a task before loading its doc.
| name | unity-script |
| description | Create, read and analyze C# scripts |
Before calling any skill in this module: if you are about to call a skill with parameters guessed from its name or description, STOP — read this file (or fetch its schema via
GET /skills/recommend?includeSchema=true) first. If you already have the parameter definitions from recommend/schema, you may proceed straight to dryRun.
BATCH-FIRST: Use
script_create_batchwhen creating 2+ scripts. DESIGN-FIRST: Before creating gameplay scripts, actively consider coupling, performance, and maintainability. In an existing project, load../project-scout/SKILL.mdfirst. If the user is asking for architecture or refactoring advice, load../architecture/SKILL.mdand then../patterns/SKILL.md,../async/SKILL.md,../inspector/SKILL.md,../performance/SKILL.md,../script-roles/SKILL.md,../scene-contracts/SKILL.md,../testability/SKILL.md, or../scriptdesign/SKILL.mdas needed.
script_read / script_list / script_find_in_file / script_get_info / script_get_compile_feedback,标 SkillMode.SemiAuto)直接执行;本模块没有可 grant 的写型 skill —— 每一个写型 skill 都命中下一条的自动拦截,grant 只会再返一次 MODE_FORBIDDEN。script_create / script_create_batch / script_replace / script_append / script_rename / script_move / script_delete 均标 MayTriggerReload = true + RiskLevel = "high"(落盘 .cs 必然触发 Domain Reload),script_delete 另标 SkillOperation.Delete —— 这些 skill 被 IsForbiddenInSemi 静态拦截,在 Approval 和 Auto 下都返 MODE_FORBIDDEN,仅 Bypass 或 Allowlist 命中可执行,不要尝试 grant 流程。DO NOT (common hallucinations):
script_edit / script_update do not exist → use script_replace for find-and-replacescript_write does not exist → use script_create (new file) or script_replace (modify existing)scriptName parameter must NOT include .cs extensionRouting:
script_replace (find/replace) or script_append (add lines)script_readscript_get_compile_feedbackperception module's script_analyze| Single Object | Batch Version | Use Batch When |
|---|---|---|
script_create | script_create_batch | Creating 2+ scripts |
No batch needed:
script_read - Read script contentscript_list - List C# script files under a folderscript_get_info - Read class name, base class, public methods/fieldsscript_delete - Delete scriptscript_find_in_file - Search in scriptsscript_append - Append content to scriptscript_replace - Find and replace inside one script (plain text or regex)script_rename - Rename a script file in placescript_move - Move a script to another folder; a missing destination folder is created automaticallyscript_get_compile_feedback - Check compile errors for one script after Unity finishes compilingcreate_script() in scripts/unity_skills.py now waits for Unity to come back once and refreshes compile feedback automatically after script creation.Create a C# script from template.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
scriptName | string | Yes | - | Script class name |
folder | string | No | "Assets/Scripts" | Save folder |
template | string | No | "MonoBehaviour" | Template type |
namespaceName | string | No | null | Optional namespace |
checkCompile | bool | No | true | Check compilation after create |
diagnosticLimit | int | No | 20 | Max compile diagnostics |
Templates: MonoBehaviour, ScriptableObject, Editor, EditorWindow
Returns: {success, status, path, jobId, className, namespaceName, designReminder, serverAvailability?}
Poll the returned jobId (or call script_get_compile_feedback) to obtain compile diagnostics — they are not embedded in the synchronous response. serverAvailability carries the transient-unavailable hint when Unity is about to reload the script domain.
Create multiple scripts in one call.
Returns: {success, totalItems, successCount, failCount, results: [{success, path, className}], compilation?}
Before batch creation, decide whether each script should be:
MonoBehaviour bridgeScriptableObject configuration assetunity_skills.call_skill("script_create_batch", items=[
{"scriptName": "PlayerController", "folder": "Assets/Scripts/Player", "template": "MonoBehaviour"},
{"scriptName": "EnemyAI", "folder": "Assets/Scripts/Enemy", "template": "MonoBehaviour"},
{"scriptName": "GameSettings", "folder": "Assets/Scripts/Data", "template": "ScriptableObject"}
])
Read script content.
| Parameter | Type | Required | Description |
|---|---|---|---|
scriptPath | string | Yes | Script asset path |
Returns: {path, lines, content}
Delete a script.
| Parameter | Type | Required | Description |
|---|---|---|---|
scriptPath | string | Yes | Script to delete |
Returns: {success, status, deleted, jobId, serverAvailability?}
Search for patterns in scripts.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
pattern | string | Yes | - | Search pattern |
folder | string | No | "Assets" | Search folder |
isRegex | bool | No | false | Use regex |
limit | int | No | 50 | Max results |
Returns: {pattern, matchCount, matches: [{file, line, content}]}
Append content to a script.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
scriptPath | string | Yes | - | Script path |
content | string | Yes | - | Content to append |
atLine | int | No | end | Line number to insert at |
checkCompile | bool | No | true | Check compilation after append |
diagnosticLimit | int | No | 20 | Max compile diagnostics |
Get compile diagnostics related to one script.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
scriptPath | string | Yes | - | Script path |
limit | int | No | 20 | Max diagnostics |
import unity_skills
# BAD: 3 API calls + 3 Domain Reloads
unity_skills.call_skill("script_create", scriptName="PlayerController", folder="Assets/Scripts/Player")
# Wait for Domain Reload...
unity_skills.call_skill("script_create", scriptName="EnemyAI", folder="Assets/Scripts/Enemy")
# Wait for Domain Reload...
unity_skills.call_skill("script_create", scriptName="GameManager", folder="Assets/Scripts/Core")
# Wait for Domain Reload...
# GOOD: 1 API call + 1 Domain Reload
unity_skills.call_skill("script_create_batch", items=[
{"scriptName": "PlayerController", "folder": "Assets/Scripts/Player"},
{"scriptName": "EnemyAI", "folder": "Assets/Scripts/Enemy"},
{"scriptName": "GameManager", "folder": "Assets/Scripts/Core"}
])
# Wait for Domain Reload once...
After creating or editing scripts, Unity triggers a Domain Reload (recompilation). Use the returned compilation field first. If isCompiling=true, wait for Unity to finish and then call script_get_compile_feedback.
import time
result = unity_skills.call_skill("script_create", scriptName="MyScript")
time.sleep(5) # Wait for Unity to recompile if result["compilation"]["isCompiling"] is true
feedback = unity_skills.call_skill("script_get_compile_feedback", scriptPath=result["path"])
unity_skills.call_skill("component_add", name="Player", componentType="MyScript")
Update, repeated Find, reflection in hot paths, and avoidable allocationsscript_get_compile_feedback and fix reported errorsscript_replaceFind and replace content in a script file.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
scriptPath | string | Yes | - | Script asset path |
find | string | Yes | - | Text or pattern to find |
replace | string | Yes | - | Replacement text |
isRegex | bool | No | false | Use regex matching |
checkCompile | bool | No | true | Check compilation after replace |
diagnosticLimit | int | No | 20 | Max compile diagnostics |
Returns: { success, status, path, jobId, replacements, serverAvailability? }
script_listList C# script files in the project.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
folder | string | No | "Assets" | Folder to search in |
filter | string | No | null | Filter string for path matching |
limit | int | No | 100 | Max results |
Returns: { count, scripts: [{ path, name }] }
script_get_infoGet script info (class name, base class, methods).
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
scriptPath | string | Yes | - | Script asset path |
Returns: { path, className, baseClass, namespaceName, isMonoBehaviour, publicMethods, publicFields }
script_renameRename a script file.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
scriptPath | string | Yes | - | Script asset path |
newName | string | Yes | - | New script name (without extension) |
checkCompile | bool | No | true | Check compilation after rename |
diagnosticLimit | int | No | 20 | Max compile diagnostics |
Returns: { success, status, path, jobId, oldPath, newName, serverAvailability? }
script_moveMove a script to a new folder.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
scriptPath | string | Yes | - | Script asset path |
newFolder | string | Yes | - | Destination folder. Created (and registered in AssetDatabase) automatically if missing. |
checkCompile | bool | No | true | Check compilation after move |
diagnosticLimit | int | No | 20 | Max compile diagnostics |
Returns: { success, status, path, jobId, oldPath, newPath, serverAvailability? }
Exact names, parameters, defaults, and returns are defined by GET /skills/schema or unity_skills.get_skill_schema(), not by this file.
Full transport-level codes (COMPILING/RATE_LIMIT etc.) → ../../references/protocol-error-codes.md
| Error | Trigger | Fix |
|---|---|---|
MISSING_PARAM | A required parameter is missing, such as scriptName in script_create or pattern in script_find_in_file. | Supply the parameter named in the error; use mode=dryRun to see the schema. |
SEMANTIC_INVALID | The input violates a naming/path rule, such as scriptName must not contain path separators, newName must not contain path separators, or the script already exists. | Remove path separators, choose a unique name, or rename/move the existing file first. |
TARGET_NOT_FOUND | The script file, MonoScript, or target directory could not be found. | Verify the path with asset_find or script_list, then retry with the correct scriptPath. |
SKILL_ERROR | A filesystem operation failed, such as Failed to delete script or an AssetDatabase move/rename error. | Read the error details, resolve the underlying file/AssetDatabase issue, and retry. |