Alloydb basics
Skill hamzabellouch/agent-skills/Google Cloud and GKE/alloydb-basics
Comprehensive collection of 380+ production-ready Agent Skills (26 domains) conforming to the Agent Skills Standard, featuring native auto-discovery for Antigravity, Gemini CLI, Claude Code, Cursor, and Codex.
npx -y skills add hamzabellouch/agent-skills --skill alloydb-basicsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 20 days oldThe repository was created 20 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Manages clusters, instances, and backups for AlloyDB for PostgreSQL, and integrates with AlloyDB model context protocol (MCP) tools for automated database operations.
SKILL.md
2.4 KB, 473 tokens by cl100k_base, as published. Nobody here has run it
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
-
Enable the AlloyDB API:
gcloud services enable alloydb.googleapis.com --quiet -
Create a Cluster:
gcloud alloydb clusters create my-cluster --region=us-central1 \ --password=my-password --network=my-vpc \ --quietNote: For production, we recommend using IAM database authentication instead of passwords. If passwords must be used, use secure secret management (e.g., Secret Manager) instead of passing passwords in cleartext.
-
Create a Primary Instance:
gcloud alloydb instances create my-primary --cluster=my-cluster \ --region=us-central1 --instance-type=PRIMARY --cpu-count=2 \ --quiet
Reference Directory
-
Core Concepts: Architecture, disaggregated storage, and performance features.
-
CLI Usage: Essential
gcloud alloydbcommands for cluster and instance management. -
Client Libraries & Connectors: Connecting to AlloyDB using Python, Java, Node.js, and Go.
-
MCP Usage: Using the AlloyDB remote MCP server and Gemini CLI extension.
-
Infrastructure as Code: Terraform configuration and deployment examples.
-
IAM & Security: Predefined roles, service agents, and database authentication.
If you need product information not found in these references, use the
Developer Knowledge MCP server search_documents tool.
What ships with it: 6 files
17.5 KB alongside SKILL.md
references/
- client-library-usage.md5.4 KB
- cli-usage.md1.2 KB
- core-concepts.md2.1 KB
- iac-usage.md3.2 KB
- iam-security.md4.3 KB
- mcp-usage.md1.3 KB