What problem does it solve? Building and restructuring Unity scene hierarchies requires many repetitive editor operations—creating objects, moving them, parenting them, renaming them—which is slow and error-prone when done one object at a time through manual editor work. ## Core Features & Use Cases - Full GameObject Lifecycle: Create primitives or empty objects, duplicate, rename, delete, and toggle active state, with single-object and batch variants for every operation. - Transform & Hierarchy Control: Set world/local position, rotation, scale, RectTransform UI properties, parent-child relationships, and sibling order. - Query & Inspection: Find objects by name, tag, layer, or component, and retrieve detailed info including children and components. - Use Case: Build a level layout by batch-creating a floor and walls, batch-positioning them, and batch-tagging them as "Wall"—three API calls instead of dozens of manual editor steps. ## Quick Start Ask the AI to create a plane named Floor and two cubes named Wall1 and Wall2, position the walls at x = -5 and x = 5, and tag both as Wall in the current Unity scene.