What problem does it solve? Scattered standalone .ps1 scripts are hard to distribute, version, and maintain. This Skill converts them into proper PowerShell modules with a manifest, Public/Private folder organization, and controlled function exports, ready for team sharing or PowerShell Gallery publication. ## Core Features & Use Cases - Module Structure Generation: Creates the standard layout with .psd1 manifest, .psm1 root module, and Public/Private/Tests folders. - Function Organization: Splits multi-function scripts into one file per function and separates exported public functions from internal private helpers. - Manifest & Validation: Generates the module manifest with New-ModuleManifest and validates it using Test-ModuleManifest, Import-Module, and PSScriptAnalyzer. - Use Case: You have an AzureTools.ps1 script mixing user-facing commands with internal helpers. Use this Skill to split it into an AzureTools module where only Get-AzureReport is exported and the helpers stay private. ## Quick Start Convert my standalone PowerShell script AzureTools.ps1 into a proper module with a manifest and Public and Private folders.