windows-compatibility
Installation
SKILL.md
Windows Compatibility Skill
Critical Rule: Bash Tool Uses Git Bash
The Bash tool runs commands through Git Bash (/usr/bin/bash), NOT Windows CMD or PowerShell.
This means:
- Use bash/POSIX syntax for all shell commands
- Do NOT use Windows CMD syntax (
if not exist,copy,del) - Do NOT use PowerShell syntax (
Remove-Item,New-Item)