When you need shell scripts that run anywhere,Alpine containers, ancient Solaris boxes, embedded systems, wherever,this is your go-to. It enforces strict POSIX sh compliance, so no arrays, no bash-isms, no `[[` conditionals. You get patterns for working around those limitations: positional parameters instead of arrays, `case` for pattern matching, `printf` instead of echo. It's opinionated about safety too: quote everything, use traps for cleanup, validate with explicit checks. The real value is in the constraints section and workarounds, which save you from debugging why your script breaks on dash or BusyBox ash. Worth it if portability actually matters for your use case.
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill posix-shell-pro