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.
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
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.