powershell-windows
PowerShell Windows patterns. Critical pitfalls, operator syntax, error handling.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
PowerShell Windows patterns. Critical pitfalls, operator syntax, error handling.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Structured iterative reasoning framework for deep problem solving, featuring verification loops and refinement stages.
API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.
Main application building orchestrator. Creates full-stack applications from natural language requests.
Architectural decision-making framework. Requirements analysis, trade-off evaluation, ADR documentation.
Bash/Linux terminal patterns. Critical commands, piping, error handling, scripting.
AI operational modes (BRAINSTORM, IMPLEMENT, DEBUG, REVIEW, TEACH, SHIP).
| name | powershell-windows |
| description | PowerShell Windows patterns. Critical pitfalls, operator syntax, error handling. |
| allowed-tools | Read, Write, Edit, Glob, Grep, Bash |
Parentheses. ASCII. Null Checks.
if ((Test-Path "a") -or (Test-Path "b")). Mandatory.[OK], [ERROR].if ($arr -and $arr.Count -gt 0).ConvertTo-Json -Depth 10.Join-Path $P "file".$arr = @().$ErrorActionPreference = "Stop" (Dev).-WhatIf first."..git?".Set-StrictMode.Invoke-Expression (iex).SecureString ONLY.Set-StrictMode -Version Latest
$ErrorActionPreference = "Continue"
try {
# Logic
exit 0
} catch {
Write-Warning "Error: $_"
exit 1
}