README's "Quick start" and "Installation" sections use mkdir -p / cp -r, which fail as-is in PowerShell/cmd.exe. Since this is a Claude Code skill meant to run cross-platform (Claude Code itself runs on Windows), add a parallel PowerShell snippet (New-Item -ItemType Directory -Force, Copy-Item -Recurse) alongside the bash one.
README's "Quick start" and "Installation" sections use
mkdir -p/cp -r, which fail as-is in PowerShell/cmd.exe. Since this is a Claude Code skill meant to run cross-platform (Claude Code itself runs on Windows), add a parallel PowerShell snippet (New-Item -ItemType Directory -Force,Copy-Item -Recurse) alongside the bash one.