assets-create-folder

Automates Asset directory folder creation in Unity projects with validation and AssetDatabase refresh.

Updated Aug 26, 2025
One-click install
npx skills add https://github.com/infotechsrealm/PanicAtThePond --skill assets-create-folder-infotechsrealm
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: assets-create-folder
Source: https://github.com/infotechsrealm/PanicAtThePond/tree/main/.claude/skills/assets-create-folder
Command: npx skills add https://github.com/infotechsrealm/PanicAtThePond --skill assets-create-folder-infotechsrealm

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill automates the creation of new folders in a specified parent directory within the 'Assets' folder, simplifying organization and ensuring all required intermediate folders exist before new ones are created.

Core Features & Use Cases

  • Folder Creation Automation: Automatically creates one or more folders within the 'Assets' directory hierarchy, ensuring all required intermediate folders exist.
  • Validation Checks: Ensures parent folders are valid paths and that no duplicate folders are created with the same name.
  • AssetDatabase Refresh: Refreshes the AssetDatabase after folder creation for consistency.
  • Use Case: For managing asset files in Unity projects, organizing folders can be crucial for workflow efficiency.

Quick Start

Create a new folder named 'Level1' inside 'Assets/Levels/' using the assets-create-folder skill.

Frequently Asked Questions about assets-create-folder

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

FAQPage Schema
How do I automate Unity folder creation in the Assets directory?

To automate Unity folder creation in the Assets directory, use an automated script to generate the specified folder hierarchy and instantly refresh the AssetDatabase. This ensures all intermediate paths are valid before creation.

Why does creating a new folder in Unity fail if the parent path is invalid?

Creating a folder in Unity fails when the parent path is invalid because validation checks require all intermediate folders to exist. Automated scripts ensure these required intermediate directories are generated before attempting to create the target folder.

What is the best way to manage Unity asset file structure for large projects?

The best way to manage Unity asset file structure for large projects is to automate folder creation within the Assets directory. This prevents duplicate naming and maintains a consistent hierarchy, which is crucial for workflow efficiency and asset management.

Does Unity automatically refresh the AssetDatabase after new folders are created?

Unity does not always automatically refresh the AssetDatabase after folders are created manually. However, automated folder creation scripts refresh the AssetDatabase immediately after successfully generating the required directories to maintain project consistency.

Can I prevent duplicate folders from being created in Unity Assets?

You can prevent duplicate folders from being created in Unity Assets by using validation checks during automated folder creation. These checks ensure that no duplicate folders are generated with the same name within the same directory hierarchy.