Catalog
google/google-cloud-recipe-onboarding

google

google-cloud-recipe-onboarding

Guidance for a developer's first steps on Google Cloud, covering account creation, billing setup, project management, and deploying a first resource.

global
0installs0uses~1.5k
v1.0Saved May 2, 2026

Onboarding to Google Cloud

This skill provides a streamlined "happy path" for a singleton developer to get started with Google Cloud. It covers everything from initial account setup to deploying your first cloud resource.

Overview

For an individual developer, onboarding to Google Cloud involves establishing a personal identity, setting up a billing method, and creating a workspace (Project) where resources can be managed. Google Cloud offers a Free Tier and Free Trial for multiple products. Learn more here.

Clarifying Questions

Before proceeding, the agent should clarify the user's current status:

  1. Do you already have a Google Account (Gmail or Google Workspace)?
  2. Are you looking to set up a personal account for learning/experimentation, or are you part of an organization with existing infrastructure?
  3. Are you an IT admin within a larger enterprise, setting up Google Cloud for your organization?
  4. What is the first type of resource or application you are interested in building (e.g., a website, a data pipeline, a virtual machine)?
  5. Do you prefer to use the command line (CLI), an IDE (e.g. VSCode, Antigravity), or do you prefer using the web-based Google Cloud console?

Prerequisites

  • A Google Account (e.g., @gmail.com).
  • A valid payment method (credit card or bank account) for billing verification (even for the free trial).

Steps

1. Sign Up and Activate Free Credit

  1. Go to the Google Cloud Console.
  2. Sign in with your Google Account. This will "Activate" your $300 free credit.

2. Create Your First Google Cloud Project

Google Cloud resources are organized into Projects.

  1. In the Google Cloud console, click the project picker dropdown at the top of the page.
  2. Click New Project.
  3. Enter a Project Name (e.g., my-first-gcp-project).
  4. Note the generated Project ID; you will use this for CLI and API interactions.
  5. Click Create.

3. Set Up Billing

Ensure your project is linked to your Free Trial Cloud Billing account.

  1. Go to the Billing section in the console.
  2. Confirm that your new project is listed under "Projects linked to this billing account."

4. Install and Initialize the Google Cloud CLI

The Google Cloud CLI (gcloud CLI) is the primary tool for interacting with Google Cloud from your local machine.

  1. Download and install the Google Cloud CLI.
  2. Open your terminal and run: gcloud init
  3. Follow the prompts to log in and select your project.

5. Enable Necessary APIs

Most services require their specific API to be enabled before use. For example, to use Cloud Run, run: gcloud services enable run.googleapis.com

Note that some Google Cloud APIs, including Cloud Logging, are enabled by default.

6. Deploy Your First Resource

Choose a simple entry point based on your needs: - Cloud Run (Recommended for Apps): Deploy a containerized "Hello World" app. - Compute Engine: Create a small Linux VM (e.g., e2-micro which is part of the Always Free tier in certain regions). - Cloud Storage: Create a bucket to store files.

Example (Cloud Run):

    gcloud run deploy hello-world \
    --image=gcr.io/cloudrun/hello \ --platform=managed \ --region=us-central1 \
    --allow-unauthenticated

This command will output a public URL, that you can reach in a web browser. Congrats - you just deployed your first Google Cloud resource!

7. Next Steps

Validation Logic

Use this logic to determine if the user has successfully completed the Google Cloud onboarding process:

  • Project Created: Does the user have a Project ID?
  • Billing Linked: Is the project associated with a billing account (check via gcloud beta billing projects describe PROJECT_ID)?
  • CLI Authenticated: Does gcloud config list show the correct account and project?
  • Resource Verified: Can the user access the URL or IP of the deployed resource?
Files2
2 files · 16.6 KB

Select a file to preview

Overall Score

82/100

Grade

B

Good

Safety

88

Quality

82

Clarity

85

Completeness

75

Summary

A comprehensive onboarding skill for individual developers starting with Google Cloud. It guides users through account creation, project setup, billing configuration, CLI installation, API enablement, and deploying a first resource. Includes a separate reference guide for enterprise-level setup.

Detected Capabilities

Account and identity setup guidanceGoogle Cloud project creationBilling account configurationgcloud CLI installation and authenticationAPI enablementResource deployment (Cloud Run, Compute Engine, Cloud Storage)Validation and verification of successful onboardingEnterprise resource hierarchy planningIAM and access control setupNetworking configuration (VPC, Shared VPC, VPN)

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

google cloud setupgcp onboardingfirst cloud resourcegcloud authenticationcloud project creation

Risk Signals

INFO

Guidance references external Google Cloud domains (accounts.google.com, console.cloud.google.com, cloud.google.com)

SKILL.md, Clarifying Questions section and throughout
INFO

gcloud CLI commands require user authentication (gcloud init, gcloud auth)

SKILL.md, Section 4: Install and Initialize the Google Cloud CLI
INFO

Billing setup requires valid payment method (credit card or bank account)

SKILL.md, Prerequisites and Section 3: Set Up Billing
INFO

Skill guides users to enable APIs and deploy resources that may incur costs after free credits expire

SKILL.md, Section 5: Enable Necessary APIs and Section 6: Deploy Your First Resource
INFO

Enterprise setup guide references sensitive access controls (Organization Admin, Security Admin roles)

reference/google-cloud-setup.md, Section 3: Identity and Access (IAM)

Referenced Domains

External domains referenced in skill content, detected by static analysis.

accounts.google.comcloud.google.comconsole.cloud.google.comdocs.cloud.google.comknowledge.workspace.google.comworkspace.google.comwww.apache.org

Use Cases

  • First-time Google Cloud user setting up a personal account
  • Developer deploying their first cloud resource
  • Individual evaluating Google Cloud's free tier
  • Enterprise IT admin establishing organizational Google Cloud foundation
  • Developer migrating from AWS or Azure to Google Cloud

Quality Notes

  • Strong structure with clear, logical progression from setup to first deployment
  • Clarifying questions section helps agent understand user context before proceeding
  • Includes validation logic at the end to verify successful completion
  • Good use of links to official Google Cloud documentation
  • Provides example deployment command (Cloud Run) with explanation
  • Separate enterprise reference guide adds value for organizational deployments
  • Addresses multiple user personas (individual developer vs. enterprise admin)
  • Covers free tier and cost considerations appropriately
  • Could benefit from error handling guidance (e.g., 'if gcloud init fails', 'if billing account linking fails')
  • Could include approximate time estimates for each step
  • Missing guidance on common troubleshooting scenarios (authentication errors, API enabling delays, quota limits)
Model: claude-haiku-4-5-20251001Analyzed: May 2, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Add google/google-cloud-recipe-onboarding to your library

Command Palette

Search for a command to run...