What problem does it solve? AI assistants often generate shell commands that fail because they assume the wrong operating system, shell, or tool availability. This Skill detects the user's platform (Windows, Linux, macOS, or WSL) and ensures every command, script, and file operation uses the correct native tools and conventions. ## Core Features & Use Cases - OS Detection: Identifies the platform via uname, environment signals, or path patterns, and asks the user when uncertain. - Verified Command Mappings: Provides cross-platform equivalents for file operations, text processing, networking, process management, and scheduling across bash/zsh, PowerShell, and cmd.exe. - Platform References: Loads detailed per-OS references covering BSD vs GNU differences, PowerShell idioms, cmd.exe gotchas, and deprecated commands. - Use Case: When asked to "find all log files containing errors" on a Windows machine, the agent outputs Select-String or findstr instead of a failing grep -r command. ## Quick Start Ask the agent to write a shell command or script for your task, and it will first detect your operating system and then generate the correct platform-specific commands.