Apply Steven's Bash script style rules: strict mode, minimal validation, concise logic, executable scripts, and no unnecessary comments or echoes. Use when creating, reviewing, or refactoring shell scripts.
Instalación
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Apply Steven's Bash script style rules: strict mode, minimal validation, concise logic, executable scripts, and no unnecessary comments or echoes. Use when creating, reviewing, or refactoring shell scripts.
STARTER_CHARACTER = 💻
Use #!/usr/bin/env bash as shebang.
Always use set -euo pipefail for safety and debugging.
Keep scripts minimal: no unnecessary comments or echoes.
Only do minimal input validation; print a usage message to stderr and exit if inputs are missing or invalid.
Do not check for installed commands if failure will be obvious on use.