New to Claude Skills? Learn how to install them →

davila7 on GitHub

Google Cloud Onboarding

Free

Easily set up your Google Cloud environment.

Get this skill

Free · Opens the source repo

What Google Cloud Onboarding does

Google Cloud Onboarding is designed to assist developers in navigating the initial steps of using Google Cloud. This skill provides a clear, step-by-step guide to setting up a Google Cloud account, linking billing, creating a project, and deploying resources. It is particularly useful for individuals who are new to cloud services and want a structured approach to get started.

The onboarding process begins with account creation, where users must have a Google Account and a valid payment method to activate the free trial credit. Once the account is set up, users are guided through creating their first Google Cloud project, which serves as a workspace for managing resources. This structured approach demystifies the initial setup, allowing developers to focus on their projects rather than navigating complex configurations.

After establishing a project, users will learn how to set up billing, which is crucial even for free-tier usage. The skill then guides users through the installation of the Google Cloud CLI, a command-line tool essential for managing cloud resources. It also covers enabling necessary APIs and deploying a simple application, such as a containerized "Hello World" app using Cloud Run. This practical deployment example helps users see immediate results from their setup efforts.

Overall, Google Cloud Onboarding is ideal for developers looking to quickly familiarize themselves with Google Cloud's ecosystem. It streamlines the onboarding process, making it accessible for those with minimal cloud experience, while also providing enough detail for users to understand the underlying processes involved in cloud resource management.

When to use it

Use this skill when you are starting with Google Cloud and need guidance on account setup, billing, and resource deployment.

When not to use it

This skill may not be suitable for experienced users who are already familiar with Google Cloud's setup processes or for those looking for advanced configuration options.

What you can build with it

First-time Cloud Users

Ideal for developers new to cloud computing who need a straightforward guide to get started.

Experimenting with Cloud Services

Great for individuals looking to explore Google Cloud's Free Tier and test various services without incurring costs.

Learning Cloud Deployment

Useful for developers wanting to learn how to deploy applications in a cloud environment using Google Cloud.

How to install Google Cloud Onboarding

View source

1. Install with the skills CLI

npx skills add davila7/claude-code-templates/google-cloud-onboarding --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by davila7

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 --quiet

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

Reference Directory

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?

Frequently asked questions about Google Cloud Onboarding

Similar skills