gcp-cli-gotchas
Installation
SKILL.md
GCP CLI Formatting Gotchas & Escaping Solutions
Use this skill when you encounter CLI errors, need to debug command formatting, or want to avoid common escaping pitfalls with gcloud and bq commands.
Common Issues and Solutions
1. Command Substitution Breaking
Problem: Nested command substitutions with pipes fail
# ❌ This fails with parse error
bq show PROJECT:DATASET.$(bq ls | tail -n 1 | cut -d',' -f1)