powershell-windows
PowerShell Windows patterns. Critical pitfalls, operator syntax, error handling.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
PowerShell Windows patterns. Critical pitfalls, operator syntax, error handling.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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
}