using-cloud-cli

Automate cross-cloud CLI workflows for AWS and GCP services.

1|1|Updated Dec 28, 2025
One-click install
npx skills add https://github.com/julianobarbosa/tiger-900 --skill using-cloud-cli-julianobarbosa
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: using-cloud-cli
Source: https://github.com/julianobarbosa/tiger-900/tree/main/.claude/skills/using-cloud-cli-skill
Command: npx skills add https://github.com/julianobarbosa/tiger-900 --skill using-cloud-cli-julianobarbosa

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires bq, bc, and includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill standardizes and accelerates cross-cloud CLI workflows by providing ready-to-run patterns for AWS, GCP, and related services, reducing setup time and human error.

Core Features & Use Cases

  • Cross-cloud CLI patterns for AWS and GCP, including S3/EC2/Lambda/IAM and BigQuery/Cloud Storage/Compute Engine/Cloud Run.
  • Cost awareness and optimization guidance with dry-run checks and best-practice recommendations.
  • Quick references and practical examples to accelerate day-to-day cloud operations.

Quick Start

Use the cloud CLI skill to run representative tasks:

  • List AWS EC2 instances: aws ec2 describe-instances --output json
  • List GCP Compute Engine instances: gcloud compute instances list --format=json
  • Run a BigQuery cost estimate: bq query --dry_run --use_legacy_sql=false 'SELECT 1'

Frequently Asked Questions about using-cloud-cli

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate cloud CLI tasks across AWS and GCP?

Automating cross-cloud CLI tasks involves using standardized command patterns for AWS and GCP services. This approach provides ready-to-run syntax for common services like EC2, S3, BigQuery, and Compute Engine to reduce manual configuration errors.

How do I estimate BigQuery query costs before execution?

You can estimate BigQuery query costs by running a dry-run check using the bq query --dry_run command. This calculates the data volume scanned without executing the query, providing cost awareness and optimization guidance before processing data.

Do I need specific command-line tools installed to run cross-cloud CLI workflows?

Yes, executing cross-cloud CLI workflows requires specific command-line tools installed and configured. The automation patterns rely on existing CLI dependencies like the bq tool for BigQuery operations and standard AWS or GCP CLI environments.

What is the best way to list compute instances across AWS and GCP?

The best way to list compute instances across clouds is using standardized CLI commands like aws ec2 describe-instances for AWS and gcloud compute instances list for GCP. These commands output structured JSON for consistent cross-cloud resource listing.

Can I use standardized CLI patterns for both AWS Lambda and GCP Cloud Run?

Yes, standardized CLI patterns support serverless compute services including AWS Lambda and GCP Cloud Run. These patterns provide quick references and practical command examples to accelerate day-to-day serverless cloud operations.

Why should I use dry-run checks for BigQuery automation tasks?

You should use dry-run checks for BigQuery automation tasks to prevent unexpected billing charges. Running bq query --dry_run validates syntax and estimates query costs safely by calculating data volume scanned without actually executing the query.