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
}