Automation & Ops ✓ Google · Official gkekubernetescluster-provisioningautopilotgoogle-cloudgpu-inference

GKE Cluster Creation Advisor

Plan, provision, and audit GKE clusters against production best practices.

FollowSkills review · FSRS-2.0
Not recommended
48/ 100 5-point scale 2.4 / 5
Trust15 / 25 · 3.0/5

The skill requires the project, location, and cluster name and instructs the agent to present the configuration and obtain confirmation before creation. It recommends private nodes, authorized networks, Secret Manager, and Workload Identity, showing some least-privilege and security awareness. Points are deducted because cluster creation has external infrastructure and cost effects but lacks rollback, deletion recovery, failed-resource cleanup, and complete data-flow disclosure; some examples use the broad cloud-platform OAuth scope; and authorized-network examples do not specify restrictive CIDRs.

Reliability6 / 20 · 1.5/5

The workflow covers discovery, input collection, creation, operation tracking, and post-creation verification, and names the MCP tools. Points are deducted because this is static documentation with no tests or reproducibility evidence; examples are not fully consistent with the stated best practices, with some omitting private-cluster, Workload Identity, Shielded Nodes, or complete networking settings; systematic handling of quota, permission, partial-creation, and abnormal-input failures is absent. The mode table also contains visibly corrupted formatting.

Adaptability10 / 15 · 3.3/5

The description clearly targets GKE cluster creation, mode selection, GPU/AI scenarios, and production-readiness audits, while excluding application onboarding; it also requires asking for missing essential parameters. Points are deducted because non-fit boundaries, required permissions, existing-network constraints, and audit inputs/outputs are not sufficiently defined; Chinese-language support is not addressed, nor is reachability from mainland-China networks for gcloud, MCP, or dependent Google Cloud services.

Convention8 / 15 · 2.7/5

The skill has front matter, a layered workflow, a mode table, best practices, templates, and repository-level Apache-2.0 licensing, maintenance links, and active-development context. Points are deducted because the skill itself lacks versioning, a changelog, named maintenance responsibility, and a concrete update path; referenced adjacent documents and tool contracts are not included in the supplied evidence; troubleshooting, parameter constraints, FAQs, and template-difference guidance are thin, and the mode table is malformed.

Effectiveness6 / 15 · 2.0/5

It supplies gcloud and MCP configuration skeletons for Autopilot, Standard, GPU, and Hypercompute scenarios, with confirmation before creation and read-back verification afterward, so it plausibly supports the core planning task. Points are deducted because static files cannot establish that the commands and JSON are directly runnable against the current API; several templates are inconsistent or incomplete and may require manual networking, identity, and permission work; and no verified representative output or audit-report format is provided.

Verifiability3 / 10 · 1.5/5

The material provides concrete commands, MCP payloads, configuration fields, and references to adjacent files, offering some auditability; repository provenance, license, and revision are supplied in the review context. Points are deducted because there is no committed test suite, CI coverage, third-party execution record, or corroborating source; commands and best-practice claims were not executed in this static review, so conclusions rely mainly on one author-provided source.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 513a7a51e85f
The upstream repository has new commits since this review. The score still applies to the reviewed revision shown and may not cover the latest changes.
Before you use it
  • GKE creation provisions billable cloud resources; before confirmation, verify the project, region, quotas, network CIDRs, permissions, and expected cost.
  • Do not apply the cloud-platform OAuth scope or unrestricted authorized-network examples directly to production; tighten permissions and ingress for the workload.
  • The gcloud and MCP examples do not consistently contain equivalent security settings; compare and validate every parameter against the current API before execution.
  • This assessment is static only; no commands, MCP calls, or cluster verification were executed.
Review evidence [1][2][3][4]
See the full review method →

What does this skill do, and when should you use it?

This skill plans and executes Google Kubernetes Engine cluster creation, configuration, and production-readiness audits. It defaults to the production Autopilot golden path and also provides Standard Regional, GPU inference, and AI Hypercompute templates. Its workflow covers context discovery, mode selection, networking, configuration approval, creation, operation tracking, and verification. It does not handle application onboarding or deployment configuration.

Inspects existing clusters and project context, gathers the project ID, location, cluster name, and environment type, and explains trade-offs between Autopilot and Standard modes. It produces a gcloud command or create_cluster JSON payload, then uses create_cluster or gcloud after user confirmation. It tracks progress with get_operation and verifies settings with get_cluster using readMask="*". Referenced MCP tools include list_clusters, create_cluster, get_cluster, list_operations, and get_operation.

  1. A cloud platform engineer needs a production GKE cluster but has not chosen between Autopilot and Standard.
  2. A production team wants private nodes, VPC-native networking, Workload Identity, and a release channel configured.
  3. An ML platform team needs an L4-based inference cluster and guidance on quota requirements.
  4. An infrastructure team requires custom kernel, node OS, or privileged workload support that Autopilot cannot provide.
  5. An operator needs to audit an existing GKE cluster against the recommended golden-path settings.

What are this skill's strengths and limitations?

Pros
  • Provides explicit Autopilot, Standard Regional, GPU inference, and AI Hypercompute templates.
  • Includes guidance for private clusters, VPC-native networking, Workload Identity, Shielded Nodes, autoscaling, and regional availability.
  • Requires configuration review and confirmation before creation.
  • Supports creation and verification through MCP tools or the gcloud CLI.
Limitations
  • Requires GKE, the gcloud CLI, kubectl, or the corresponding MCP tools; no test suite or platform validation record is provided.
  • GPU and AI Hypercompute templates require specific quotas and can be expensive.
  • Standard clusters require manual management of node pools, upgrades, and autoscaling.
  • Networking and private-node choices are identified as Day-0 decisions that can be difficult to change later.

How do you install this skill?

Run npx skills add google/skills, then select GKE Cluster Creation from the interactive skill selection. The source does not document another installation method or a fixed installation directory.

How do you use this skill?

Give a concrete request to an Agent Skills-compatible client, for example: “Create a production GKE cluster named prod-cluster in us-central1 for project my-project.” The skill requests missing required details, proposes Autopilot by default, presents a gcloud command or JSON payload, and creates and verifies the cluster after confirmation.

How does this skill compare with similar options?

The skill directly compares Autopilot and Standard: Autopilot uses Google-managed nodes and pod-resource pricing, while Standard uses self-managed nodes and VM-based node pricing. It also distinguishes cluster creation from gke-app-onboarding, which is identified as the skill for application onboarding or deployment configuration.

FAQ

What information is required before cluster creation?
The required inputs are project_id, a region or other location, and a unique cluster_name. The environment type also affects template selection.
Which mode should be the default choice?
Use production Autopilot by default unless custom node, kernel, operating-system, or Hypercompute requirements cannot be satisfied there.
What extra concerns apply to GPU clusters?
The L4 option requires g2-standard-4 quota. A3 Hypercompute requires a3-highgpu-8g and H100-related quota, and has high hourly cost.
Will the skill create a cluster without approval?
No. It presents the gcloud command or create_cluster JSON payload and requires confirmation before calling a creation tool.

More skills from this repository

All from google/skills

Automation & Ops ✓ Google · Official

GKE Production Golden Path

Set production-oriented GKE defaults, readiness checks, and decision guardrails for cluster design.

Automation & Ops ✓ Google · Official

GKE AI Inference Deployment Assistant

Deploy, tune, and autoscale GPU/TPU AI inference services on GKE.

Automation & Ops ✓ Google · Official

AI Workload Migration to GKE Inference

Move existing AI inference workloads to self-hosted inference on Google Kubernetes Engine.

Automation & Ops ✓ Google · Official

GKE Basics Navigator

A focused entry point for discovering GKE cluster needs and routing each task to the right specialist skill.

Automation & Ops ✓ Google · Official

GKE Cluster Autoscaler Guide

Configure, optimize, and troubleshoot automatic GKE node scaling.

Automation & Ops ✓ Google · Official

GKE ComputeClasses Advisor

Configure, optimize, and troubleshoot GKE ComputeClasses for cost, capacity, and workload placement.

Automation & Ops ✓ Google · Official

GKE Enterprise RAG Search Architect

Designs and validates enterprise RAG search systems built on GKE and AlloyDB.

Automation & Ops ✓ Google · Official

GKE Cost Optimization

Reduce GKE spending through rightsizing, quotas, Spot VMs, and capacity planning.

Automation & Ops ✓ Google · Official

GKE Observability Configuration

Configure GKE logging, monitoring, and Prometheus metrics.

Dev & Engineering ✓ Google · Official

Google Agents CLI Agent Development Guide

Guides agents from specification through development, deployment, and monitoring.

Automation & Ops ✓ Google · Official

GKE Multi-Tenancy Planner

Plan isolation, quotas, access control, and cost attribution for teams sharing a GKE cluster.

Automation & Ops ✓ Google · Official

GKE Production Readiness Review

Assess whether GKE clusters and workloads are ready for production.

Automation & Ops ✓ Google · Official

GKE Workload Autoscaling

Configure manual scaling, HPA, and VPA for GKE workloads while improving resource requests from observed usage.

Automation & Ops ✓ Google · Official

GKE App Onboarding Assistant

Containerize and deploy an application to Google Kubernetes Engine for the first time.

Automation & Ops ✓ Google · Official

GKE Storage Manager

Configure persistent disks, Filestore, and GCS FUSE storage for GKE workloads.

Automation & Ops ✓ Google · Official

GKE Workload Reliability Guide

Reduce GKE workload disruption with high-availability configuration.

Automation & Ops ✓ Google · Official

GKE Backup & Disaster Recovery

Configure Backup for GKE policies and restore workflows for stateful workloads.

Automation & Ops ✓ Google · Official

GKE GPU/TPU Disruption Diagnosis

Diagnose and mitigate GKE GPU/TPU node disruptions caused by host maintenance.

Dev & Engineering ✓ Google · Official

Google Cloud Agent Platform Inference Assistant

Guides developers in connecting to Google Cloud Agent Platform and calling Gemini or OpenMaaS models.

Automation & Ops ✓ Google · Official

Google Cloud Authentication Guide

Choose secure Google Cloud authentication and authorization for local, production, and cross-cloud workloads.

Related skills