# v0.3 Release Notes Release date: 2026-07-02 V0.3 adds Claude Code compatibility and validates that the skill can be used in a real Claude Code session on Windows. ## Highlights - Added Claude Code adapter at `adapters/claude-code/powershell-command-runner/`. - Added global Claude Code installer: ```powershell powershell -NoProfile -ExecutionPolicy Bypass -File .\scripts\install-claude-global.ps1 ``` - Installs to: ```text %USERPROFILE%\.claude\skills\powershell-command-runner ``` - Bundles `core/` inside the installed skill. - Rewrites core references to `${CLAUDE_SKILL_DIR}/core`. - Keeps the same privacy boundary: no telemetry, no failure upload, no scheduled collection. ## Local Claude Code Validation Tested with Claude Code `2.1.158` in normal non-bare mode: - Explicit `/powershell-command-runner` invocation loaded the skill. - A Windows path task without a slash command loaded the skill automatically. - Claude Code used `Test-Path -LiteralPath` against a path containing both a space and Chinese characters. - The command returned `True`. Known limit: - `--bare` mode returned `Unknown command: /powershell-command-runner` during local testing. Do not use `--bare` as the standard skill acceptance path. ## Verification ```powershell powershell -NoProfile -ExecutionPolicy Bypass -File .\scripts\verify-v0.1.ps1 -PowerShellExe powershell.exe pwsh -NoProfile -ExecutionPolicy Bypass -File .\scripts\verify-v0.1.ps1 -PowerShellExe pwsh ```