<< All versions
Skill v1.0.1
currentAutomated scan100/100diegosouzapw/awesome-omni-skill/uloop-execute-dynamic-code-majiayu000
1 files
──Details
PublishedMay 15, 2026 at 08:34 AM
Content Hashsha256:8edc1d51e4264423...
Git SHAa6b3c3005ced
Bump Typepatch
──Files
Files (1 file, 2.9 KB)
SKILL.md2.9 KBactive
SKILL.md · 96 lines · 2.9 KB
version: "1.0.1" name: uloop-execute-dynamic-code description: Execute C# code dynamically in Unity Editor via uloop CLI. Use for editor automation: (1) Prefab/material wiring and AddComponent operations, (2) Reference wiring with SerializedObject, (3) Scene/hierarchy edits and batch operations. NOT for file I/O or script authoring.
uloop execute-dynamic-code
Execute C# code dynamically in Unity Editor.
Usage
bash
uloop execute-dynamic-code --code '<c# code>'
Parameters
| Parameter | Type | Description | |
|---|---|---|---|
--code | string | C# code to execute (direct statements, no class wrapper) | |
--compile-only | boolean | Compile without execution | |
--auto-qualify-unity-types-once | boolean | Auto-qualify Unity types |
Code Format
Write direct statements only (no classes/namespaces/methods). Return is optional.
csharp
// Using directives at top are hoistedusing UnityEngine;var x = Mathf.PI;return x;
String Literals (Shell-specific)
| Shell | Method | |
|---|---|---|
| bash/zsh/MINGW64/Git Bash | 'Debug.Log("Hello!");' | |
| PowerShell | 'Debug.Log(""Hello!"");' |
Allowed Operations
- Prefab/material wiring (PrefabUtility)
- AddComponent + reference wiring (SerializedObject)
- Scene/hierarchy edits
- Inspector modifications
Forbidden Operations
- System.IO.* (File/Directory/Path)
- AssetDatabase.CreateFolder / file writes
- Create/edit .cs/.asmdef files
Examples
bash / zsh / MINGW64 / Git Bash
bash
uloop execute-dynamic-code --code 'return Selection.activeGameObject?.name;'uloop execute-dynamic-code --code 'new GameObject("MyObject");'uloop execute-dynamic-code --code 'UnityEngine.Debug.Log("Hello from CLI!");'
PowerShell
powershell
uloop execute-dynamic-code --code 'return Selection.activeGameObject?.name;'uloop execute-dynamic-code --code 'new GameObject(""MyObject"");'uloop execute-dynamic-code --code 'UnityEngine.Debug.Log(""Hello from CLI!"");'
Output
Returns JSON with execution result or compile errors.
Notes
For file/directory operations, use terminal commands instead.
Code Examples by Category
For detailed code examples, refer to these files:
- Prefab operations: See examples/prefab-operations.md
- Create prefabs, instantiate, add components, modify properties
- Material operations: See examples/material-operations.md
- Create materials, set shaders/textures, modify properties
- Asset operations: See examples/asset-operations.md
- Find/search assets, duplicate, move, rename, load
- ScriptableObject: See examples/scriptableobject.md
- Create ScriptableObjects, modify with SerializedObject
- Scene operations: See examples/scene-operations.md
- Create/modify GameObjects, set parents, wire references, load scenes