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
}