Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/arktarusov/unity-cli-plugin/unity-editorsnpx skills add ArkTarusov/unity-cli-plugin --skill unity-editorsgit clone --depth 1 https://github.com/ArkTarusov/unity-cli-pluginWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00071 | $0.00841 |
| Opus 5 | $0.00036 | $0.00420 |
| Sonnet 5 | $0.00014 | $0.00168 |
| Haiku 4.5 | $0.00007 | $0.00084 |
Grade A, and why
unity-editors scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 56 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Unity editors, modules, projects (Hub replacement)
unity subcommands for everything Unity Hub does. Prerequisite basics (PATH, --json, --non-interactive, auth): see skill unity-cli-core.
Consent rule: install, install-modules, uninstall, and --allow-install change the user's machine (multi-gigabyte downloads, UAC prompts on Windows). Run them when installing is what the user asked for; when an install is merely a means to unblock your own task, propose the exact command and wait for approval.
Quick reference
unity editors -i # installed editors
unity editors -r # available releases (also: unity releases --lts)
unity editors running # running GUI Editor instances + open project (version, PID); does not list -batchmode editors
unity install 6000.3.7f1 -m ios android --accept-eula -y
unity install lts # version aliases: lts, latest streams
unity install-modules -e 6000.3.7f1 -m webgl # add modules later
unity install-modules -e 6000.3.7f1 -l # list module IDs
unity uninstall 6000.3.7f1
unity install-path # get/set where editors install
unity editor add "C:\Path\To\Editor" # register an editor installed outside the Hub
unity open ./MyProject # opens with the project's editor version
unity open . --build-target Android
unity projects list
unity projects size . # on-disk footprint by top-level folder (--json = raw bytes)
unity projects require . --json # assert project's editor version is installed; installs if missing
unity projects new MyGame --json # CI-friendly project creation (create = interactive)
unity templates list
unity license status
unity license activate
Non-interactive rules (CI, agents)
Omitting arguments starts interactive pickers. Always pass:
- an explicit version (or alias like
lts) — never bareunity install -y/--yesto auto-select the first match--accept-eulafor module license agreements--non-interactiveglobally
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 56 lines · 71 tokens per session scan A 92d6addf768d
unity-editors is a skill published in the GitHub repository ArkTarusov/unity-cli-plugin (6 stars, last pushed 14d ago), licensed MIT. It adds 71 tokens to every session and 841 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
geometry-and-math
Use this skill when using Phaser 4 math and geometry utilities. Covers vectors, rectangles, circles, triangles, polygons, random number generation, angles, distance, interpolation, and snapping. Triggers on: Vector2, Rectangle, Circle, math, distance, angle, random, lerp.
text-and-bitmaptext
Use this skill when displaying text in Phaser 4. Covers Text game objects, BitmapText, web fonts, text styling, word wrap, alignment, padding, and dynamic text content. Triggers on: Text, BitmapText, this.add.text, font, word wrap, text style.
unity-mcp-orchestrator
Orchestrate Unity Editor via MCP (Model Context Protocol) tools and resources. Use when working with Unity projects through MCP for Unity - creating/modifying GameObjects, editing scripts, managing scenes, running tests, or any Unity Editor automation. Provides best practices, tool schemas, and workflow patterns for…
gameobject-component-destroy
Destroy one or more Components from a target GameObject. Missing (null) components are skipped — they cannot be destroyed. Use 'gameobject-find' and 'gameobject-component-get' to identify the components first.
assets-create-folder
Create a new folder under a parent folder inside 'Assets/'. The parent path must start with 'Assets/' and every intermediate folder in it must already exist. Refreshes the AssetDatabase at the end and returns the GUID(s) of the created folder(s).
assets-prefab-save
Save the currently opened prefab edit stage back to its prefab asset without exiting the stage. Pair with 'assets-prefab-open' to enter the edit mode first.