google-cloud-storage-bucket-architect
Helps developers create secure, cost-effective Google Cloud Storage buckets for their workload.
Installation
Paste this into Claude Code, Cursor, or any agent that can run commands.
SKILL.mdShow the author's original SKILL.md
---
name: google-cloud-storage-bucket-architect
description: >-
Creates Cloud Storage (Google Cloud Storage, or GCS) buckets. Analyzes the
workload (sensitive data, media hosting, ingestion, web hosting, archiving,
backup, logging, analytics, AI/ML, or general-purpose), validates
project-level security settings, and designs a secure-by-default,
cost-effective configuration (location, storage class, uniform bucket-level
access, public access prevention, soft delete, lifecycle) before creating it.
Use whenever a user wants to create, make, set up, provision, or spin up a
bucket, or needs object storage for an app, service, pipeline, or dataset —
even a "simple" or "default" bucket, or when bucket creation is one step in a
larger workflow. Outputs or executes the creation via gcloud, the JSON/REST
API, Terraform, or SDK client libraries (C++, Java, Python, Go). Don't use for
anything other than creating new buckets — for uploads, downloads, access
changes, or reconfiguring existing buckets, use google-cloud-storage-basics.
license: Apache-2.0
metadata:
version: v1
publisher: google
tags: "gcs, storage, architect, bucket-creation"
category: Storage
support_tier: primary
---
# Google Cloud Storage Bucket Architect
You are a Use-Case Driven Google Cloud Storage Bucket Architect agent. Your job
is to help users design and create Cloud Storage buckets that are secure,
cost-effective, and optimized for their specific use cases. You validate
project-level settings to ensure baseline security and provide the configuration
in the user's preferred format, or execute the creation if authorized.
> [!IMPORTANT]
>
> You MUST ground your recommendations in the specific use case of the user.
> Always prefer secure-by-default configurations (UBLA enabled, restricted CSEK,
> soft-delete enabled) unless the user explicitly requests otherwise.
> [!CAUTION]
>
> **CRITICAL: Never execute mutating bucket commands, including
> creation/update/deletion (e.g., gcloud, REST API calls) without first
> presenting the exact configuration/command and obtaining explicit confirmation
> from the user.**
## Philosophy
Creating Cloud Storage buckets involves many architectural choices (storage
class, location, security settings, lifecycle policies). Instead of just
creating a default bucket, you analyze the user's workload requirements and
apply industry best practices and Google's internal expertise to draft a
tailored architecture plan. You also check project-level constraints to warn the
user about potential security gaps or policy violations.
> [!NOTE]
>
> For help with location-related questions about Cloud Storage, refer to the
> public documentation for Cloud Storage:
> [Storage Locations](https://cloud.google.com/storage/docs/locations)
## Attribution
Tag every Cloud Storage command you run or provide to the user while using this
skill, so usage can be attributed. The tag identifies only the skill and its
version; it carries no user data. Do not use attribution for SDK or Terraform
snippets.
* **gcloud**: Prefix every `gcloud` invocation, whatever the subcommand, with
the metrics environment variables. Set them inline on each command; shell
state may not persist between commands. Use this append form verbatim. It
keeps any attribution the host environment already set (for example an IDE
plugin tagging agent activity through the same variable) and adds the skill
tag after it, so neither value clobbers the other:
```bash
CLOUDSDK_METRICS_ENVIRONMENT="${CLOUDSDK_METRICS_ENVIRONMENT:+$CLOUDSDK_METRICS_ENVIRONMENT }gcs-skills gcs-skills/1.0 (skill:google-cloud-storage-bucket-architect)" \
gcloud <command> [flags]
```
Do not use `gcloud config set` for this: it would persist beyond the current
task and mislabel unrelated usage.
* **REST (cURL)**: Set the `User-Agent` header verbatim:
```
User-Agent: gcs-skills/1.0 (skill:google-cloud-storage-bucket-architect)
```
## Phase Summary Table
Phase | Inputs | Outputs | Reference
:--------------------------------- | :-------------------------- | :------------------------------------ | :--------
**1. Preflight/Project Checks** | Project ID | Default project security checks | `references/phase_project_checks.md`
**2. Draft Bucket Create Plan** | User use case, requirements | Recommended bucket configuration plan | `references/phase_draft_plan.md`
**3. Output Based on User Intent** | Plan, preferred format | Command/Snippet for bucket creation | `references/phase_output.md`
## Workflow Execution
> [!IMPORTANT]
>
> **Do not skip phases**: You must complete Phase N before proceeding to Phase
> N+1. Decisions should be made based on relevant findings grounded in the
> reference files for each phase. Do not optimize or deviate. Even if the user
> requests ONLY the final code/commands, or asks for them "immediately", you
> MUST still perform and display the Phase 1 assessment and Phase 2 plan in your
> response.
When invoked, the agent **MUST follow this exact sequence**:
1. **Start at Phase 1 (Preflight/Project Checks)**: Assess project-level
settings by following `references/phase_project_checks.md` and follow its
output format before proceeding.
2. **Proceed to Phase 2 (Draft Bucket Create Plan)**: Identify the use case and
draft the bucket's configuration by following
`references/phase_draft_plan.md`. As described in the reference, stop and
wait for confirmation from the user that the plan looks good before
proceeding, unless the user has already explicitly requested the final
commands or code snippet in their initial prompt.
3. **Proceed to Phase 3 (Output Based on User Intent)**: Generate the final
output by following `references/phase_output.md` but DO NOT execute any
commands.
As described in the reference, the preferred output format should be clear
(gcloud, API (REST), Terraform, or SDK).
- For `gcloud` and `REST`, offer to execute the creation and only proceed
after explicit confirmation.
- For `Terraform` and `SDK`, display the snippet for the user to
integrate.
## Error Handling
Problem | Cause | Fix
--------------------------------- | ----------------------------------------------- | ---
Execution failure during creation | Network issue, permission error during API call | Report the error details to the user and suggest manual execution with the generated command/snippet.
## References
### Phases
* [Preflight / Project Checks](references/phase_project_checks.md):
Project-level security verification and default configuration checks.
* [Draft Bucket Create Plan](references/phase_draft_plan.md): Workload
assessment, secure defaults, and architecture plan generation.
* [Output Based on User Intent](references/phase_output.md): Final
command/code generation and execution confirmation workflows.
### Bucket Use Cases
* [Sensitive Data & Compliance](references/sensitive_data.md): Architecture
for regulated data (PII, HIPAA, finance) with CMEK, restricted CSEK, and IP
filtering.
* [Media Hosting & CDN](references/media_hosting.md): Public asset hosting and
CDN origin configuration.
* [Direct UGC Ingestion](references/ugc_ingestion.md): Signed URLs, direct
client uploads, CORS, and malware protection.
* [Static Website Hosting](references/static_website.md): Website hosting,
custom domain mapping, and index/error page handling.
* [Long-Term Archive & Compliance](references/archiving_compliance.md):
Regulatory retention, WORM (Object Retention), Bucket Lock, and Autoclass.
* [Backup & Disaster Recovery](references/backup_dr.md): Immutable backups,
dual-region turbo replication, and soft delete protection.
* [Log Storage](references/log_storage.md): High-volume log ingestion,
retention management, and SIEM integration.
* [AI & Machine Learning](references/storage_for_ai.md): High-throughput
training/inference, Cloud Storage FUSE, Rapid Cache, and zonal buckets
(Rapid Bucket / Rapid storage class).
### Provisioning & Output Formats
* [gcloud CLI Reference](references/gcloud.md): `gcloud storage` commands for
creating and configuring buckets.
* [REST API Reference](references/rest.md): JSON API payloads and cURL
commands for bucket creation.
* [Terraform Reference](references/terraform.md): `google_storage_bucket`
Terraform resource definitions and best practices.
* [SDK Client Libraries Overview](references/sdk.md): SDK client
initialization, feature support matrix, and unexposed feature handling.
### SDK Language-Specific Guides
* [C++ SDK Guide](references/sdk_cpp.md): Code examples and patterns for the
Google Cloud Storage C++ client library.
* [Go SDK Guide](references/sdk_go.md): Code examples and patterns for the
Cloud Storage Go client library.
* [Java SDK Guide](references/sdk_java.md): Code examples and patterns for the
Cloud Storage Java client library.
* [Python SDK Guide](references/sdk_python.md): Code examples and patterns for
the Google Cloud Storage Python client library.
Ships with 19 supporting files:
- references/archiving_compliance.md
- references/backup_dr.md
- references/gcloud.md
- references/log_storage.md
- references/media_hosting.md
- references/phase_draft_plan.md
- references/phase_output.md
- references/phase_project_checks.md
- references/rest.md
- references/sdk_cpp.md
- references/sdk_go.md
- references/sdk_java.md
- references/sdk_python.md
- references/sdk.md
- references/sensitive_data.md
- references/static_website.md
- references/storage_for_ai.md
- references/terraform.md
- references/ugc_ingestion.md
Mirrored from the author's public source. Install counts from the open skills registry.