What problem does it solve?
This skill consolidates a comprehensive view of all resources in a GCP project, providing a quick, centralized snapshot of resource status.
Core Features & Use Cases
- Unified resource visibility: Lists VM instances, disks, APIs, firewall rules, service accounts, storage buckets, external IPs, and API keys in one report.
- Operational efficiency: Speeds up audits, handovers, and cost controls by reducing manual queries.
- Use Case: Before project cleanups or migrations, run this skill to assess resource ownership and exposure.
Quick Start
Run the following commands after setting your active project:
PROJECT_ID=$(gcloud config get-value project)
gcloud compute instances list --project=$PROJECT_ID
gcloud compute disks list --project=$PROJECT_ID
gcloud services list --enabled --project=$PROJECT_ID
gcloud compute firewall-rules list --project=$PROJECT_ID
gcloud iam service-accounts list --project=$PROJECT_ID
gcloud storage buckets list --project=$PROJECT_ID
gcloud compute addresses list --project=$PROJECT_ID
gcloud services api-keys list --project=$PROJECT_ID