scene-create

Creates new Unity scene files in project assets via the unity-mcp-cli tool.

1|Updated Apr 1, 2026
One-click install
npx skills add https://github.com/Fermisloth/Project-Aegis-Adaptive-Outbreak-Containment --skill scene-create-fermisloth
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: scene-create
Source: https://github.com/Fermisloth/Project-Aegis-Adaptive-Outbreak-Containment/tree/main/.agent/skills/scene-create
Command: npx skills add https://github.com/Fermisloth/Project-Aegis-Adaptive-Outbreak-Containment --skill scene-create-fermisloth

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires unity-mcp-cli.

What problem does it solve? Manually creating Unity scenes through the editor interrupts automated workflows; this Skill creates new scene files programmatically through the Unity MCP command-line interface. ## Core Features & Use Cases - Programmatic Scene Creation: Create a new .unity scene file at any path inside the project's Assets folder. - Configurable Setup and Mode: Choose between an empty scene or default GameObjects, and open it in Single or Additive mode. - Structured Output: Returns scene metadata including load state, path, build index, and validity for downstream tooling. - Use Case: While building a multi-scene Unity project, ask the AI to scaffold a new 'Assets/Scenes/Level2.unity' scene with default GameObjects, then verify it with the scene-list-opened tool. ## Quick Start Create a new Unity scene at Assets/Scenes/Main.unity with default GameObjects using the scene-create tool.

Frequently Asked Questions about scene-create

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a new Unity scene from the command line?

Run unity-mcp-cli run-tool scene-create with a JSON input containing the scene path ending in .unity. The tool creates the scene in the connected Unity editor and returns its metadata.

What is the difference between EmptyScene and DefaultGameObjects in Unity scene creation?

EmptyScene creates a scene with no objects, while DefaultGameObjects adds the standard camera and directional light. Pass either value in the newSceneSetup parameter.

What does Single vs Additive scene mode mean in Unity?

Single mode closes currently open scenes and opens only the new one, while Additive mode loads the new scene alongside existing ones. Set this via the newSceneMode parameter.

Why is unity-mcp-cli not found when running scene-create?

The CLI is not installed globally. Install it with npm install -g unity-mcp-cli or prefix commands with npx, and ensure the Unity MCP server is running in the editor.

How do I verify a Unity scene was created successfully?

Check the returned SceneDataShallow output for IsValidScene and IsLoaded flags, then run the scene-list-opened tool to confirm the new scene appears among opened scenes.