# Bash Guidelines
- Always start with `set -euo pipefail`
- Must pass shellcheck standards
- Prefer pipe-based solutions over control flow
- If control flow (if/while) seems necessary, suggest using another language
- Pipeline-oriented solutions are preferred