powershell-windows
Installation
SKILL.md
PowerShell Windows Patterns
Critical patterns and pitfalls for Windows PowerShell.
1. Operator Syntax Rules
CRITICAL: Parentheses Required
| ❌ Wrong | ✅ Correct |
|---|---|
if (Test-Path "a" -or Test-Path "b") |
if ((Test-Path "a") -or (Test-Path "b")) |
if (Get-Item $x -and $y -eq 5) |
if ((Get-Item $x) -and ($y -eq 5)) |
Rule: Each cmdlet call MUST be in parentheses when using logical operators.
Related skills
More from dokhacgiakhoa/antigravity-lab
pc-games
PC and console game development principles. Engine selection, platform features, optimization strategies.
1deployment-engineer
>
12d-games
2D game development principles. Sprites, tilemaps, physics, camera.
1vr-ar
VR/AR development principles. Comfort, interaction, performance requirements.
1game-art
Game art principles. Visual style selection, asset pipeline, animation workflow.
1geo-fundamentals
Generative Engine Optimization for AI search engines (ChatGPT, Claude, Perplexity).
1