scene-save

Save an active or named scene to a .unity asset file.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/lunafish/Game00 --skill scene-save
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: scene-save
Source: https://github.com/lunafish/Game00/tree/main/SKILLS/scene-save
Command: npx skills add https://github.com/lunafish/Game00 --skill scene-save

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill addresses the need to persistently store the current state of opened scenes within a project, preventing data loss and enabling version control of scene configurations.

Core Features & Use Cases

  • Save Current Scene: Persists the active scene's data to a specified file path.
  • Save Named Scene: Allows saving a specific opened scene by its name.
  • Use Case: After making significant changes to a game level, you can use this Skill to save the scene to a designated asset path, ensuring your work is backed up and can be easily revisited or shared.

Quick Start

Save the currently active scene to the path 'Assets/Scenes/MySavedScene.unity'.

Frequently Asked Questions about scene-save

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

FAQPage Schema
How do I save an opened Unity scene to an asset file?

To save an opened Unity scene to an asset file, this Skill persists the active scene's current state and configuration directly to a user-defined file path ending in '.unity'.

Can I save a specific Unity scene by its name instead of the active one?

Yes, you can save a specific opened Unity scene by its name. The Skill supports persisting both the currently active scene and specifically named scenes to a designated asset path.

Why do I need to save Unity scenes to asset files during game development?

Saving Unity scenes to asset files prevents data loss by persistently storing scene configurations. This enables version control and ensures game level changes are backed up for revisiting or sharing.

What is the required file path format for saving a Unity scene?

The required file path format for saving a Unity scene must end in '.unity'. You need to define a specific asset path, such as 'Assets/Scenes/MySavedScene.unity', to store the file.

Does this scene saving approach work for versioning scene configurations?

Yes, saving opened scenes to asset files works for versioning scene configurations. It persistently stores the current state of your game levels, enabling reliable version control and backup workflows.