powershell-style
Installation
SKILL.md
PowerShell Style
Quick start
Every script starts with a standard header block, uses try/catch for error handling, and follows verb-noun function names.
#----------------------------------------------------------------------
# Script: Do-Something.ps1
# Description: One-line summary of what this script does.
#----------------------------------------------------------------------
[CmdletBinding()]
param(
[Parameter(Mandatory)]
[string] $TargetPath
)