using-cloud-cli

Credentials are pre-configured. Use --help or Context7 for syntax.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "using-cloud-cli" with this command: npx skills add julianobarbosa/claude-code-skills/julianobarbosa-claude-code-skills-using-cloud-cli

Cloud CLI Patterns

Credentials are pre-configured. Use --help or Context7 for syntax.

BigQuery

Always estimate cost first

bq query --dry_run --use_legacy_sql=false 'SELECT ...'

Run query

bq query --use_legacy_sql=false --format=json 'SELECT ...'

List tables

bq ls project:dataset

Get table schema

bq show --schema --format=json project:dataset.table

Cost awareness: Charged per bytes scanned. Use --dry_run , partition tables, specify columns.

GCP (gcloud)

List resources

gcloud compute instances list --format=json

Describe resource

gcloud compute instances describe INSTANCE --zone=ZONE --format=json

Create with explicit project

gcloud compute instances create NAME --project=PROJECT --zone=ZONE

Use --quiet for automation

gcloud compute instances delete NAME --quiet

AWS

List resources

aws ec2 describe-instances --output json

With JMESPath filtering

aws ec2 describe-instances --query 'Reservations[].Instances[].InstanceId' --output text

Explicit region

aws s3 ls s3://bucket --region us-west-2

Dry run where available

aws ec2 run-instances --dry-run ...

References

  • GCP.md - GCP service patterns and common commands

  • AWS.md - AWS service patterns and common commands

  • scripts/ - Helper scripts for common operations

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

obsidian-vault-management

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

zabbix

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

neovim

No summary provided by upstream source.

Repository SourceNeeds Review