ワンクリックで
windows
Windows environment conventions: PowerShell idioms, service management, path conventions, and winget usage for this repo.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Windows environment conventions: PowerShell idioms, service management, path conventions, and winget usage for this repo.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Operate Harkonnen through the repo-local MCP server and CLI. TRIGGER: user asks about run history, PackChat threads or messages, checkpoints, board snapshots, reasoning trails, benchmark suites or reports, wants to diagnose a failure, wants a run report, or wants to start, queue, or watch a run. Preferred over raw shell commands for Harkonnen interactions.
Databricks on Azure: cluster lifecycle, Delta Lake operations, MLflow tracking, and Unity Catalog patterns for this repo.
Azure cloud resources: ARM/Bicep templates, Azure CLI patterns, RBAC, service principals, and subscription safety for this repo.
Docker and Compose: image builds, container lifecycle, networking, volume management, and safety conventions for this repo.
SQL database patterns: schema migrations, query safety, index design, and transaction hygiene for this repo.
WinCC OA SCADA: CTRL scripts, panels, datapoint operations, manager lifecycle, and live-system safety for this repo.
| name | windows |
| description | Windows environment conventions: PowerShell idioms, service management, path conventions, and winget usage for this repo. |
| user-invocable | false |
| allowed-tools | ["Bash(powershell *)","Bash(pwsh *)","Bash(sc *)","Bash(reg *)"] |
This repo runs on Windows. Apply these conventions.
pwsh) over cmd.exe for scripting.$env:VARNAME for environment variables in PowerShell.%VARNAME%; avoid mixing styles.\ on Windows — use Join-Path in PowerShell instead of string concatenation.$env:USERPROFILE or [Environment]::GetFolderPath('UserProfile').$env:APPDATA (roaming), $env:LOCALAPPDATA (local).$env:ProgramFiles, $env:ProgramFiles(x86).winget install --id Publisher.Package --exactchoco install package -yGet-Service -Name ServiceName or sc query ServiceNameStart-Service, Stop-ServiceGet-EventLog -LogName Application -Source ServiceName -Newest 20$ErrorActionPreference = 'Stop' at the top of critical scripts.Test-Path $path before Get-Content $path.Write-Host sparingly; prefer Write-Output for pipeline-compatible output.ls, cat, echo) — use full cmdlet names.