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
)
Installs
33
GitHub Stars
1
First Seen
Jun 6, 2026
powershell-style — thecloudexplorers/skills