用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Besty0728/Unity-Skills --skill unity-cli命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | unity-cli |
| description | Guide for using the experimental Unity CLI with bound UnitySkills projects |
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.
Advisory module — no REST skills. All commands here run in YOUR shell on the user's machine, not through the REST server. That is the point: they work while the Unity Editor is closed.
Before using anything below, check the binding config:
<projectRoot>/Library/UnitySkills/cli_config.json
enabled: false → Unity CLI is OFF for this project. Ignore this module entirely. Do not suggest installing the CLI unprompted; the user opts in via Window > UnitySkills → AI Config → Unity CLI Setup….enabled: true → use cliPath as the executable (it may not be on your PATH). Respect the per-feature switches in features:{
"schemaVersion": 1,
"enabled": true,
"cliPath": "/Users/me/.local/bin/unity",
"cliVersion": "1.0.0-beta.5",
"projectPath": "/path/to/Project",
"editorVersion": "6000.0.32f1",
"boundAt": "2026-07-26T09:00:00Z",
"features": { "coldStart": true, "openArgs": true, "cliTest": true, "cliRun": false, "cliBuild": false }
}
Configs written by older plugin versions may lack the cliRun / cliBuild keys — for these two, a missing key means OFF (the first three keys keep their original semantics). Both also default to off on fresh binds; the user enables them per project in the panel.
The global registry (~/.unity_skills/registry.json) also carries cliBound / cliPath per running instance — use it for liveness checks only, never as authorization: the ONLY thing that authorizes CLI use for a project is that project's own cli_config.json. Do not cold-start any project whose own config you have not read, even if it appears in the registry. Also note projectPath inside the config is a bind-time snapshot — the directory you actually found the config under is authoritative (helper get_cli_config() already rewrites it); never open the stored path if it differs from the real project root.
Unity CLI is experimental (beta) and its command surface changes between releases — this document was verified against
1.0.0-beta.5.cliVersionin the config is only a bind-time snapshot; the installed binary moves ahead of it. Before using a command whose semantics changed recently, read<cliPath> --versionand<cliPath> <command> --help—--helpis always the final authority for the binary on disk. If a command errors unexpectedly, run<cliPath> doctor --format jsonfirst (environment snapshot: CLI version, paths, auth state, installed editors, recent log lines;--tail <n>for more log) and re-check--helpbefore retrying. Never modify the server or config to work around a CLI quirk.
features.coldStart)The one capability REST can never provide: starting the editor when it is not running.
<cliPath> status --format json # any editor instances running?
<cliPath> open "<projectPath>" --args -unityskills-coldstart
Always pass --args -unityskills-coldstart when cold-starting: the UnitySkills plugin detects this marker at editor startup and force-starts the REST server for this session, even if the user's Auto-start preference is off. Without the marker you depend on the user's saved preference. The marker is consumed once per editor session — it never overrides a mid-session manual stop.
Preflight — is the right editor even installed? open / test / run / build all resolve the editor from the project's ProjectVersion.txt. Before the first CLI launch of a session, confirm the bound editorVersion is actually installed:
<cliPath> editors -i --format json
If it is not installed, stop and tell the user — installing an editor is a large, system-changing operation that only the user decides on. Never run install, and never pass --allow-install (see DO NOT).
After launching, poll the UnitySkills REST server until ready (first import/compile can take minutes):
from unity_skills import wait_for_health
health = wait_for_health(timeout=600) # polls /health on ports 8090-8100
Liveness triage — prefer this over blind retry. When REST is unreachable, determine whether an Editor is actually running before deciding to cold-start:
cli_config.json first. Only proceed if it exists and enabled: true.~/.unity_skills/registry.json, find the entry whose path equals the project root, then test its pid (ps -p <pid> / Windows tasklist). Live pid → the editor is running but busy (Domain Reload / import) → keep the normal REST wait-and-retry; do not cold-start.<cliPath> editors running --format json --non-interactive lists the Editor instances the CLI can see. This is useful confirmation, but it only sees instances the CLI's backend recognizes.Library/UnityLockfile. A held lockfile means an Editor instance is open on this project even if the registry entry is missing.<cliPath> status is supplementary, not authoritative: it only reflects Unity Pipeline connection state. An empty table / non-zero exit does NOT mean the editor is closed — verified in practice: a running editor without the Pipeline package shows nothing.If the PID, the CLI process list, or the lockfile indicates an Editor is already running, do not open, run, or build — Unity refuses a second instance on the same project. Only when none of the above show a live Editor for this project should you cold-start with open, then wait_for_health.
features.openArgs)<cliPath> open "<projectPath>" --args -openscene "Assets/Scenes/Main.unity"
Anything after --args is passed to the Unity Editor as standard command-line arguments. Useful to land in a known state (specific scene, custom -executeMethod). Only at launch time — for an already-running editor use REST scene_load instead.
features.cliTest)<cliPath> test "<projectPath>" --mode EditMode --filter <pattern> --output test-results.xml --timeout 1800
--mode <EditMode|PlayMode> — omit to run the editor's default test platform; cover both modes with two separate invocations.--filter <pattern> — only run tests whose names match.--output <path> — NUnit XML report (default test-results.xml). In CI, continue to use this file for test results.test --help may list extra report/coverage flags such as --report-format nunit,junit, --junit-output, --coverage, --coverage-output, --coverage-options. Only use a parameter if the current binary's test --help explicitly lists it. If a parameter name is uncertain, re-read --help; do not guess parameter names.--timeout <seconds> (env UNITY_TEST_TIMEOUT) — kills the Unity process after N seconds; disabled by default, always set one for unattended runs.--, e.g. -- -nographics.0 all passed; 6 tests ran but at least one failed (or the Editor exited abnormally); 7 Unity services were unreachable even after CLI retries; 130 cancelled by SIGINT; 143 terminated by SIGTERM; any other non-zero = the command itself failed — check stderr, the JSON envelope, and errors[].code, not just the XML.Routing rule:
test_* skills.unity test (headless, NUnit XML output). Do not run unity test against a project whose editor is open.features.cliRun)One-shot batch automation on the bound project only, while the editor is closed — the third lifecycle option between REST (editor open, interactive) and cold start (launch and keep serving):
<cliPath> run "<projectPath>" --timeout 1800 -- -executeMethod Your.Static.Method -quit
-- is forwarded to the Unity Editor as standard command-line arguments; -executeMethod <static method> plus -quit is the typical shape (asset re-import, batch fixes, custom pipelines).stopped with signal SIGSEGV/SIGILL/SIGTRAP/SIGFPE/SIGBUS; treat that as an Editor crash, not a business-logic failure.--timeout <seconds> (env UNITY_RUN_TIMEOUT) — disabled by default; always set one, a hung batch editor otherwise blocks your shell forever.run (Unity refuses a second instance on the same project — same Library/UnityLockfile rule as cold start). Editor closed + persistent session needed → cold start. Editor closed + one-shot task → run.run --command <name> — that drives Unity Pipeline package commands, which is not part of the UnitySkills workflow (see DO NOT).features.cliBuild)cliBuild is off by default. When the user enables it, choose the build path based on the installed CLI version, Unity Editor version, target platform, and whether a Build Profile exists:
<cliPath> build "<projectPath>" --profile "Windows" --output-path ./Builds/win64
--profile accepts a Build Profile asset path or the profile name shown in the Build Profile window.6000.x) and a configured Build Profile.<cliPath> build "<projectPath>" --target StandaloneWindows64 --output-path ./Builds/win64
--target is still required.--execute-method is optional starting with beta4; the CLI can drive the built-in desktop build when --output-path is provided.<cliPath> build "<projectPath>" --target Android --execute-method Builder.PerformBuild --output-path ./Builds/android
--execute-method remains compatible and takes priority when provided; use it for Android, iOS, WebGL, or projects that already have a custom build pipeline.--output-path is forwarded to Unity as -buildOutput; the execute-method itself is responsible for reading it.--no-tail to disable); the full log lands at <project>/Logs/build-<target>-<timestamp>.log unless --log-file overrides it.build refuses to run with uncommitted changes. That protection is deliberate — pass --allow-dirty-build only when the user explicitly says so.--versioning-strategy <semantic|tag|custom|none> (default none) stamps the build version from git tags/history; --build-version applies only with custom.--android-export-type <apk|aab|android-studio-project> plus keystore/signing flags exist, but the CLI's own help warns that secrets passed as CLI arguments can leak into shell history and CI logs — let the user handle signing configuration themselves; never ask them to paste keystore passwords into your shell commands.run: bound project only, editor must be closed, and once the editor is up again all normal operations go back through REST.0 success; 6 build failed or the Editor exited abnormally; 7 Unity services unreachable after retries; 130 SIGINT; 143 SIGTERM. In beta5+, an Editor crash is reported as stopped with signal SIGSEGV/SIGILL/SIGTRAP/SIGFPE/SIGBUS — treat that separately from BUILD_FAILED.--format <human|json|tsv|ndjson> (env UNITY_FORMAT); --json is shorthand for --format json. When stdout is piped the default silently becomes TSV — one more reason to always pass --format json explicitly. JSON responses use a standard envelope {success, command, data, errors, warnings}; ndjson streams progress events for long-running commands.--non-interactive (env UNITY_NON_INTERACTIVE) turns prompts into hard errors instead of hanging your shell; combine with --quiet (env UNITY_QUIET) and --no-banner (env UNITY_NO_BANNER) for clean machine output. Exporting the env vars once (UNITY_FORMAT=json, UNITY_NON_INTERACTIVE=1) covers a whole scripted session.UNITY_NON_INTERACTIVE=1 — disable interactive prompts.UNITY_FORMAT=json — default output format; command-line --format wins if both are set.UNITY_NO_PAGER=1 — never page long output (beta4+ uses a pager in interactive terminals).UNITY_NO_CRASH_REPORT=1 — opt out of anonymous crash reporting via Sentry (beta3+).errors[].code, and stderr together — do not rely on a single exit code.| Exit code | Meaning |
|---|---|
0 | Success. |
1 | Generic error — read stderr / JSON errors. |
2 | Usage or argument error (wrong command, missing required flag). |
3 | Authentication or authorization failure. |
4 | Missing required configuration. |
6 | Primary operation failed — tests failed, build failed, or the Editor exited abnormally. |
7 | Unity services unreachable even after CLI retries; caller may retry a limited number of times. 6 is terminal, 7 may be transient. |
130 | Cancelled by user (SIGINT / Ctrl+C). |
143 | Terminated by SIGTERM. |
--format ndjson. Starting in beta4, the stream ends with a terminal type=result frame; use the last {"type":"result","success":false,...} (or true) as the final state. Do not treat earlier progress frames or stderr log lines as the result. If the CLI version is older and does not emit a terminal result frame, fall back to the process exit code plus stderr.build/test/run report an Editor crash as stopped with signal SIGSEGV/SIGILL/SIGTRAP/SIGFPE/SIGBUS. Distinguish these from business failures (TEST_FAILED, BUILD_FAILED) and from CLI-side failures (argument, config, network, auth).--verbose adds full error details with stack traces — useful once, when reporting a CLI problem to the user.cli_config.json is absent or enabled:false — the user has not opted in. Operate only on the bound project (the directory you found the config under); never open / test / run / build any other project.--allow-install (accepted by test / run / build), and do not use unity install / uninstall / hub / license commands unless the user explicitly asks — installing or removing editors is a large, slow, system-changing operation that belongs to the user alone.unity mcp — it starts a blocking stdio MCP server and waits for a client, hanging your shell.unity command / unity pipeline / unity run --command — the Unity Pipeline package route duplicates what UnitySkills REST already provides and is not part of this workflow.unity projects exec or unity projects clean — these operate across multiple projects and violate the "only touch the bound project" boundary.unity editors prune or unity editors verify — these modify or validate the global Editor installation set and are outside the project lifecycle.unity command --detach, unity eval --detach, or unity job — detached commands and job queues are a different control channel from the bound-project workflow.unity skill install or unity skill refresh — official skills can bypass UnitySkills' own advisory and feature gates; skill installation is a user decision in the panel.unity shell --protocol ndjson — it is the beta3 warm-process machine protocol, equivalent to the official MCP route, and is not part of this workflow.unity upgrade, Homebrew, winget, etc.) automatically; updating the CLI is a user decision.unity language, e.g. Chinese table headers) — always pass when you need to read results programmatically.Starting with beta4, the Unity CLI requires glibc 2.34+ on Linux and no longer supports Ubuntu 20.04 and earlier, Debian 11, RHEL/CentOS 8, or Amazon Linux 2. On those systems the CLI may fail to start with a glibc-related error rather than a normal "command not found".
Do not treat this as "CLI not installed" and prompt the user to reinstall. Instead, surface the compatibility constraint: the installed binary cannot run on this OS/glibc version; options are to stay on beta3 capabilities, upgrade the OS, or use a different machine. There is no global minimum version enforced by UnitySkills — capabilities are branched by actual CLI behavior:
build semantics (--execute-method required), no NDJSON terminal result frame.type=result frames.SIGSEGV, SIGILL, SIGTRAP, SIGFPE, SIGBUS).The safest way to branch is to run <cliPath> --version and <cliPath> <command> --help at the start of a session and act on what the binary actually reports.
Exact names, parameters, defaults, and returns are defined by GET /skills/schema or unity_skills.get_skill_schema(), not by this file.
--format json --non-interactive/health responds, all normal operations go through REST skills.