Google Cloud Onboarding
Guides developers through their first steps on Google Cloud, covering account creation, billing setup, project management, CLI installation, and deploying a first resource.
$ npx claude-code-templates@latest --skill="development/google-cloud-onboarding" --yesRequires Claude Code. The command adds this skill to your project's .claudedirectory — nothing runs on ToolZip's servers.
What's inside this skill
Component source
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:
- Do you already have a Google Account (Gmail
- Are you looking to set up a personal account for learning/experimentation,
- Are you an IT admin within a larger enterprise, setting up Google Cloud for
- What is the first type of resource or application you are interested in
- Do you prefer to use the command line (CLI), an IDE (e.g. VSCode,
console
?Prerequisites
- A Google Account (e.g., @gmail.com).
- A valid payment method (credit card or bank account) for billing
Steps
1. Sign Up and Activate Free Credit
- Go to the Google Cloud Console.
- Sign in with your Google Account. This will "Activate" your $300 free
2. Create Your First Google Cloud Project
Google Cloud resources are organized into
Projects.- In the Google Cloud console, click the project picker dropdown at the top of
- Click New Project.
- Enter a Project Name (e.g.,
my-first-gcp-project). - Note the generated Project ID; you will use this for CLI and API
- Click Create.
3. Set Up Billing
Ensure your project is linked to your Free Trial Cloud
Billing
account.
- Go to the Billing section in the console.
- Confirm that your new project is listed under "Projects linked to this
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.
CLI.- Open your terminal and run:
gcloud init - Follow the prompts to log in and select your project.
5. Enable Necessary APIs
Most services require their specific
API to be enabled beforeuse. 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):
- Compute Engine: Create a
e2-micro which is part of the Always Free tier in
certain regions).
- Cloud Storage: Create a
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
- Explore the Google Cloud Free Program to
- Read the Google Cloud Overview
- See the full list of 150+ Google Cloud products
- Explore the Enterprise Setup Guide
Reference Directory
- Google Cloud Setup Guide: Detailed
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
gcloud beta billing projects describe PROJECT_ID)?
- CLI Authenticated: Does
gcloud config listshow the correct account
- Resource Verified: Can the user access the URL or IP of the deployed
Related Claude Code Skills
Code Reviewer
Comprehensive code review skill for TypeScript, JavaScript, Python, Swift, Kotlin, Go. Includes automated code analysis, best practice checking, security scanning, and review checklist generation. Use when reviewing pull requests, providing code feedback, identifying issues, or ensuring code quality standards.
Senior Frontend
Comprehensive frontend development skill for building modern, performant web applications using ReactJS, NextJS, TypeScript, Tailwind CSS. Includes component scaffolding, performance optimization, bundle analysis, and UI best practices. Use when developing frontend features, optimizing performance, implementing UI/UX designs, managing state, or reviewing frontend code.
Senior Backend
Comprehensive backend development skill for building scalable backend systems using NodeJS, Express, Go, Python, Postgres, GraphQL, REST APIs. Includes API scaffolding, database optimization, security implementation, and performance tuning. Use when designing APIs, optimizing database queries, implementing business logic, handling authentication/authorization, or reviewing backend code.
Senior Architect
Comprehensive software architecture skill for designing scalable, maintainable systems using ReactJS, NextJS, NodeJS, Express, React Native, Swift, Kotlin, Flutter, Postgres, GraphQL, Go, Python. Includes architecture diagram generation, system design patterns, tech stack decision frameworks, and dependency analysis. Use when designing system architecture, making technical decisions, creating architecture diagrams, evaluating trade-offs, or defining integration patterns.
Skill Creator
Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.
Senior Fullstack
Comprehensive fullstack development skill for building complete web applications with React, Next.js, Node.js, GraphQL, and PostgreSQL. Includes project scaffolding, code quality analysis, architecture patterns, and complete tech stack guidance. Use when building new projects, analyzing code quality, implementing design patterns, or setting up development workflows.
Catalog data and component content are sourced from the open-source davila7/claude-code-templates project (MIT license). ToolZip curates the listing and writes original descriptions; every component links back to its original source. Claude Code is a product of Anthropic. ToolZip is an independent catalog and is not affiliated with or endorsed by Anthropic.