Install - Windows

February 1, 2026 ยท View on GitHub

PowerShell (Run as Administrator):

git clone https://github.com/heavy3-ai/code-audit.git
cd code-audit
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.claude\skills"
New-Item -ItemType SymbolicLink -Path "$env:USERPROFILE\.claude\skills\h3" -Target "$(Get-Location)\skill" -Force

Can't run as admin? Use copy instead:

Copy-Item -Recurse -Force skill "$env:USERPROFILE\.claude\skills\h3"

2. Install Dependency

pip install requests

3. Add API Key

Get a free key at openrouter.ai/keys

"OPENROUTER_API_KEY=sk-or-xxx" | Out-File -Encoding utf8 "$env:USERPROFILE\.claude\skills\h3\.env"

4. Done

/h3              # Review changes
/h3 --council    # 3-model review
/h3 pr 123       # Review PR

Update

Symlink: cd code-audit && git pull

Copy: Re-run the copy command after git pull

Troubleshooting

Python not found? Reinstall Python and check "Add Python to PATH"

Symlink failed? Run PowerShell as Administrator, or use the copy method