Claude-skill-registry uloop-get-version
Get Unity and project information via uloop CLI. Use when you need to verify Unity version, check project settings (ProductName, CompanyName, Version), or troubleshoot environment issues.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/getversion" ~/.claude/skills/majiayu000-claude-skill-registry-uloop-get-version && rm -rf "$T"
manifest:
skills/data/getversion/SKILL.mdsource content
uloop get-version
Get Unity version and project information.
Usage
uloop get-version
Parameters
None.
Output
Returns JSON with:
: Unity Editor versionUnityVersion
: Current platformPlatform
: Assets folder pathDataPath
: Persistent data pathPersistentDataPath
: Temporary cache pathTemporaryCachePath
: Whether running in editorIsEditor
: Application product nameProductName
: Company nameCompanyName
: Application versionVersion
: uLoopMCP package versionVer
Notes
This is a sample custom tool demonstrating how to create MCP tools.