cli-gcloud
SolidDrive Google Cloud through the connected gcloud CLI (the cli_gcloud tool) — billing/costs, projects, compute, storage, IAM — instead of opening the Cloud Console in a browser via Computer-Use (which stalls on the login page). Read-first; treat resource-changing commands as consequential.
AI & Automation 30 stars
11 forks Updated today MIT
Install
Quality Score: 85/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Google Cloud via gcloud (not the browser)
When gcloud is connected, drive Google Cloud through the **`cli_gcloud`** tool —
headless, no browser login. This is the recipe for the common read tasks; it
does NOT replace the risk gate (resource-changing commands still confirm).
## Rules
- **Read-first.** List/describe before changing anything. Treat any command that
creates, deletes, or modifies a resource as consequential — confirm first.
- **Non-interactive.** gcloud runs with prompts disabled; never wait on a `(y/N)`.
- **Honest on failure.** If a command exits non-zero (e.g. "billing API not
enabled", "permission denied"), say exactly that — never invent a number.
## Costs / billing
```bash
gcloud billing accounts list --format=json
gcloud billing projects list --billing-account=<ACCOUNT_ID> --format=json
```
Billing detail needs the Cloud Billing API enabled and the right IAM role. If
either is missing the command fails — report the failure honestly, do not guess.
## Projects, compute, storage
```bash
gcloud projects list --format=json
gcloud compute instances list --format=json
gcloud storage buckets list --format=json
```
## IAM
```bash
gcloud projects get-iam-policy <PROJECT_ID> --format=json
```
Summarize the result for the user (account/project, amount + currency + period
for billing); omit raw ids unless asked.
Details
- Author
- PersonalJarvis
- Repository
- PersonalJarvis/PersonalJarvis
- Created
- 2 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
use-cli-gcloud
Reads Google Sheets and Docs through gsheet and gdoc. Authentication comes from a gcloud access token.
11 Updated today
thkt AI & Automation Listed
gcloud
Google Cloud CLI 操作
1 Updated 2 days ago
ryukyagamilight AI & Automation Listed
google-colab-cli
Use when installing, authenticating, account switching, troubleshooting, or operating google-colab-cli for Colab VM execution, file transfer, Drive mount, GPU/TPU use, or compute-unit-sensitive sessions.
0 Updated today
iamtatsuki05