/alloydb-basics
Manages clusters, instances, and backups for AlloyDB for PostgreSQL, and integrates with AlloyDB Model Context Protocol (MCP) tools for automated database operations. Use when creating, configuring, or administering AlloyDB databases. Do NOT use for general PostgreSQL instances
$ npx -y skills add google/skills --skill alloydb-basics --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/alloydb-basics
Context preview
The summary Claude sees to decide when to auto-load this skill.
Manages clusters, instances, and backups for AlloyDB for PostgreSQL, and integrates with AlloyDB Model Context Protocol (MCP) tools for automated database operations. Use when creating, configuring, or administering AlloyDB databases. Do NOT use for general PostgreSQL instances
SKILL.md
alloydb-basics.SKILL.mdname: alloydb-basics
metadata:
category: Databases
description: >-
Manages clusters, instances, and backups for AlloyDB for PostgreSQL, and
integrates with AlloyDB Model Context Protocol (MCP) tools for automated database operations.
Use when creating, configuring, or administering AlloyDB databases.
Do NOT use for general PostgreSQL instances (e.g. Cloud SQL) or other GCP databases.
AlloyDB Basics
AlloyDB for PostgreSQL is a managed, PostgreSQL-compatible database service designed for enterprise-grade performance and availability. It utilizes a disaggregated compute and storage architecture to scale resources independently. It also provides AlloyDB AI, a collection of features that includes AI-powered search (vector, hybrid search, and AI functions), natural language capabilities, conversational analytics, and inference features like forecasting and model endpoint management to help developers build AI apps faster.
Quick Start
Before you begin, ensure you have the [Google Cloud SDK installed](https://cloud.google.com/sdk/docs/install) and authenticated (`gcloud auth login`).
1. **Enable the AlloyDB API:**
gcloud services enable alloydb.googleapis.com --quiet
2. **Create a Cluster:**
gcloud alloydb clusters create my-cluster --region=us-central1 \
--password=my-password --network=my-vpc --quiet*For production environments, always use IAM database authentication instead of passwords. If configuration constraint requires passwords, store them securely using Secret Manager.*
3. **Create a Primary Instance:**
gcloud alloydb instances create my-primary --cluster=my-cluster \
--region=us-central1 --instance-type=PRIMARY --cpu-count=2 --quietReference Directory
Read these supplementary files when specific context or detailed steps are required for a task:
- To understand architecture, regional availability, connectivity (Private IP,
Public IP, PSA, PSC), backups, point-in-time recovery, scaling (vertical and horizontal), or Quota management: read [Core Concepts](references/core-concepts.md).
- To manage clusters, instances, scaling, or backups via the CLI: read
[CLI Usage](references/cli-usage.md).
- To configure AlloyDB remote MCP tools: read
[MCP Usage](references/mcp-usage.md).
- To deploy AlloyDB using Terraform or Kubernetes Config Connector (KCC): read
[Infrastructure as Code](references/iac-usage.md).
- To configure IAM roles, service usage roles, service agents, database
users/privileges, or network security (public IP authorization, Auth Proxy sidecar configuration): read [IAM & Security](references/iam-security.md).
*If you need product information not found in these references, use the `developer_knowledge:search_documents` tool (see [Developer Knowledge MCP setup](https://developers.google.com/knowledge/mcp) for installation instructions).*
Directives for Agents
Agents MUST adhere to the following directives when answering queries related to AlloyDB:
- **Provide Multiple Methods:** When explaining how to perform administrative
tasks (like backups, scaling, or database user creation), always provide both the Google Cloud Console steps and the `gcloud` CLI commands if both are available in the reference documents.
- **Prioritize Private IP:** Recommend Private IP (especially PSC) over Public
IP for connections to ensure traffic remains within the Google Cloud network and reduces exposure.
- **Require Serverless Connectors:** Verify and state that Serverless VPC
Access or Direct VPC Egress is required when connecting from Cloud Run to Private IP.
- **Enforce Connectors:** Always direct users to configure the AlloyDB Auth
Proxy (running as a sidecar or locally) or language connectors rather than direct TCP connections.
- **Block Open Public Access:** If Public IP is configured, warn against and
reject designs with `0.0.0.0/0` in Authorized Networks as this exposes the database to the entire internet.
- **Default to IAM Database Authentication:** Suggest IAM database
authentication and the `alloydbiamuser` database role instead of static database passwords.
- **Enforce Least Privilege Connection:** When explaining connection roles,
explicitly state that `roles/alloydb.client` should be used to adhere to the principle of least privilege, and warn against using broader roles like `roles/alloydb.admin` for connections.
- **Mention All Creation Methods:** When describing how to create IAM database
users, explicitly state that they can be created using the Google Cloud Console, the `gcloud` CLI, and the AlloyDB API.
- **Explain Private IP Options:** When explaining Private IP connectivity,
always explicitly mention and describe both **Private Services Access (PSA)** and **Private Service Connect (PSC)** as the supported methods, recommending PSC for new deployments.
- **Compare Direct Connections:** Explicitly explain that direct connections
(connecting directly to the private IP without connectors) are possible but discouraged, and compare their security (lack of IAM/mTLS) to secure methods like the AlloyDB Auth Proxy or language connectors.
- **Enforce SQL Alone Warning:** When explaining IAM user creation, you MUST
explicitly state that "IAM database users cannot be created using standard SQL alone" and must be registered via the control plane first.
- **Enforce Roles and Privileges Terminology:** When explaining database
object access, you MUST explicitly state that "standard PostgreSQL roles and privileges" apply, using both terms.
- **Explain Backup Lifecycle:** When explaining backups, always explicitly
state that discrete backups exist independently of the source cluster and remain active even if the source cluster is deleted.
- **Recommend Connect
Read more
name: alloydb-basics metadata: category: Databases description: >- Manages clusters, instances, and backups for AlloyDB for PostgreSQL, and integrates with AlloyDB Model Context Protocol (MCP) tools for automated database operations. Use when creating, configuring, or administering AlloyDB databases. Do NOT use for general PostgreSQL instances (e.g. Cloud SQL) or other GCP databases.
AlloyDB Basics
AlloyDB for PostgreSQL is a managed, PostgreSQL-compatible database service designed for enterprise-grade performance and availability. It utilizes a disaggregated compute and storage architecture to scale resources independently. It also provides AlloyDB AI, a collection of features that includes AI-powered search (vector, hybrid search, and AI functions), natural language capabilities, conversational analytics, and inference features like forecasting and model endpoint management to help developers build AI apps faster.
Quick Start
Before you begin, ensure you have the [Google Cloud SDK installed](https://cloud.google.com/sdk/docs/install) and authenticated (`gcloud auth login`).
1. **Enable the AlloyDB API:**
gcloud services enable alloydb.googleapis.com --quiet
2. **Create a Cluster:**
gcloud alloydb clusters create my-cluster --region=us-central1 \
--password=my-password --network=my-vpc --quiet*For production environments, always use IAM database authentication instead of passwords. If configuration constraint requires passwords, store them securely using Secret Manager.*
3. **Create a Primary Instance:**
gcloud alloydb instances create my-primary --cluster=my-cluster \
--region=us-central1 --instance-type=PRIMARY --cpu-count=2 --quietReference Directory
Read these supplementary files when specific context or detailed steps are required for a task:
- To understand architecture, regional availability, connectivity (Private IP,
Public IP, PSA, PSC), backups, point-in-time recovery, scaling (vertical and horizontal), or Quota management: read [Core Concepts](references/core-concepts.md).
- To manage clusters, instances, scaling, or backups via the CLI: read
[CLI Usage](references/cli-usage.md).
- To configure AlloyDB remote MCP tools: read
[MCP Usage](references/mcp-usage.md).
- To deploy AlloyDB using Terraform or Kubernetes Config Connector (KCC): read
[Infrastructure as Code](references/iac-usage.md).
- To configure IAM roles, service usage roles, service agents, database
users/privileges, or network security (public IP authorization, Auth Proxy sidecar configuration): read [IAM & Security](references/iam-security.md).
*If you need product information not found in these references, use the `developer_knowledge:search_documents` tool (see [Developer Knowledge MCP setup](https://developers.google.com/knowledge/mcp) for installation instructions).*
Directives for Agents
Agents MUST adhere to the following directives when answering queries related to AlloyDB:
- **Provide Multiple Methods:** When explaining how to perform administrative
tasks (like backups, scaling, or database user creation), always provide both the Google Cloud Console steps and the `gcloud` CLI commands if both are available in the reference documents.
- **Prioritize Private IP:** Recommend Private IP (especially PSC) over Public
IP for connections to ensure traffic remains within the Google Cloud network and reduces exposure.
- **Require Serverless Connectors:** Verify and state that Serverless VPC
Access or Direct VPC Egress is required when connecting from Cloud Run to Private IP.
- **Enforce Connectors:** Always direct users to configure the AlloyDB Auth
Proxy (running as a sidecar or locally) or language connectors rather than direct TCP connections.
- **Block Open Public Access:** If Public IP is configured, warn against and
reject designs with `0.0.0.0/0` in Authorized Networks as this exposes the database to the entire internet.
- **Default to IAM Database Authentication:** Suggest IAM database
authentication and the `alloydbiamuser` database role instead of static database passwords.
- **Enforce Least Privilege Connection:** When explaining connection roles,
explicitly state that `roles/alloydb.client` should be used to adhere to the principle of least privilege, and warn against using broader roles like `roles/alloydb.admin` for connections.
- **Mention All Creation Methods:** When describing how to create IAM database
users, explicitly state that they can be created using the Google Cloud Console, the `gcloud` CLI, and the AlloyDB API.
- **Explain Private IP Options:** When explaining Private IP connectivity,
always explicitly mention and describe both **Private Services Access (PSA)** and **Private Service Connect (PSC)** as the supported methods, recommending PSC for new deployments.
- **Compare Direct Connections:** Explicitly explain that direct connections
(connecting directly to the private IP without connectors) are possible but discouraged, and compare their security (lack of IAM/mTLS) to secure methods like the AlloyDB Auth Proxy or language connectors.
- **Enforce SQL Alone Warning:** When explaining IAM user creation, you MUST
explicitly state that "IAM database users cannot be created using standard SQL alone" and must be registered via the control plane first.
- **Enforce Roles and Privileges Terminology:** When explaining database
object access, you MUST explicitly state that "standard PostgreSQL roles and privileges" apply, using both terms.
- **Explain Backup Lifecycle:** When explaining backups, always explicitly
state that discrete backups exist independently of the source cluster and remain active even if the source cluster is deleted.
- **Recommend Connect
This repository contains Agent Skills for Google products and technologies, including Google Cloud. This repository is under active development.
Repo: google/skills
Other skills on google-skills.
- /data-manager-api-audience-ingestion
Guides developers through managing (adding, removing, and clearing) audience members for Google products using the Data Manager API and its associated client libraries. Use this skill when the user wants to upload audience members, remove specific users, or clear/replace an
Open skill - /data-manager-api-event-ingestion
Guides developers through implementing event and conversion ingestion to Google products using the Data Manager API /v1/events/ingest endpoint and its associated client libraries. Use this skill when the user wants to upload offline conversions, enhanced conversions for leads,
Open skill - /data-manager-api-setup
Guides developers through client library installation and authentication setup steps for the Data Manager API. Use this skill when a user is getting started with the Data Manager API and needs to setup their local environment, install the client library, or setup access to the
Open skill - /google-ads-api-account-diagnostics
Diagnoses Google Ads account performance issues such as conversion loss (value or volume), low lead flow/volume, and lost impression share (opportunities) due to ad rank, bids, or budgets. Use when troubleshooting sudden performance drops, analyzing campaign impression share
Open skill - /google-ads-api-mcp-setup
Guides developers through downloading, configuring, and installing the official open-source Google Ads MCP Server. Use this skill when a user wants to connect their AI assistant (such as Gemini, Claude Code, or Cursor) to their Google Ads account to query campaigns or retrieve
Open skill - /google-ads-api-quickstart
Guides developers through Google Ads API quickstart: credential setup, choosing from 6 client libraries/REST, configuring environments, and running a "retrieve campaigns" script. Troubleshoots common setup errors: USER_PERMISSION_DENIED, login_customer_id issues, and
Open skill

