agentsclimarketplace

Gcp alloydb ai developer

Skill Raishin/vanguard-frontier-agentic/skills/gcp/gcp-alloydb-ai-developer

Curated marketplace of AI skills, agents, and rules for cloud, zero-trust, and compliance-aware engineering - works with Claude Code, Codex, Cursor, Copilot, and more.

Install
npx -y skills add Raishin/vanguard-frontier-agentic --skill gcp-alloydb-ai-developer

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 18 stars18 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

Design and build AI-powered applications on AlloyDB for PostgreSQL using AlloyDB AI — covering vector search, hybrid search (vector + full-text), AI SQL functions (ai_generate, ai_classify, ai_score, ai_embed), model endpoint management, and the AlloyDB Omni edge runtime. Prefer gcp-alloydb-cloudsql-dba for cluster operations, backup, HA, and DBA tasks; use this skill when the request is primarily about AlloyDB AI search, SQL AI functions, or embedding pipelines.

SKILL.md

4.3 KB, 859 tokens by cl100k_base, as published. Nobody here has run it

GCP AlloyDB AI Developer

Overview

AlloyDB AI is a collection of features built into AlloyDB for PostgreSQL that enables AI-powered search and SQL-native inference — including pgvector integration for vector similarity search, hybrid search combining vector + full-text BM25 scoring, AI SQL functions that invoke hosted models directly from SQL queries, and model endpoint management for custom or Vertex AI models.

Core AlloyDB AI Capabilities

  1. Vector search with pgvector — store and query embeddings using <=>, <->, <#> operators; HNSW and IVFFlat index types
  2. Hybrid search — combine pgvector cosine similarity with full-text search (tsvector/tsquery) for more relevant retrieval
  3. AI SQL functionsgoogle_ml.predict_row, google_ml.embedding, ai.generate_text, ai.classify, ai.score — invoke AI models from SQL without leaving the database
  4. Model endpoint management — register Vertex AI model endpoints or Gemini models as AlloyDB model resources; control access via IAM
  5. AlloyDB Omni — run AlloyDB (including AlloyDB AI) on-premises or at the edge in a container

Quick Start (pgvector + hybrid search)

-- Enable extensions
CREATE EXTENSION vector;
CREATE EXTENSION google_ml_integration;

-- Create table with embedding column
CREATE TABLE documents (
  id BIGSERIAL PRIMARY KEY,
  content TEXT,
  embedding vector(768)
);

-- Generate embeddings using AlloyDB AI function
UPDATE documents
SET embedding = google_ml.embedding('text-embedding-004', content);

-- Vector similarity search
SELECT id, content, embedding <=> $1 AS distance
FROM documents
ORDER BY distance LIMIT 10;

-- Hybrid search (vector + BM25 full-text)
SELECT id, content,
  (1 - (embedding <=> $1)) * 0.7 + ts_rank(to_tsvector(content), query) * 0.3 AS score
FROM documents, to_tsquery($2) query
WHERE to_tsvector(content) @@ query
ORDER BY score DESC LIMIT 10;

Reference Directory

Load only when needed:

ScenarioTrigger KeywordsReference
Vector search setuppgvector, embedding, similarity, HNSW, IVFFlatreferences/vector-search.md
AI SQL functionsai_generate, ai_classify, google_ml, predict_rowreferences/ai-functions.md
Hybrid searchhybrid, BM25, full-text, combined searchreferences/hybrid-search.md
Model endpointsVertex AI model, custom model, endpoint, model registryreferences/model-endpoints.md
AlloyDB Omnion-premises, edge, container, Omnireferences/alloydb-omni.md
IAM & securityauth, service account, IAM, private IP, PSCreferences/iam-security.md

Key Rules

  • Always use pgvector's HNSW index for production vector search — IVFFlat requires manual reindexing as data grows
  • The google_ml_integration extension must be enabled and the AlloyDB service account granted roles/aiplatform.user to call Vertex AI models from SQL
  • Hybrid search weight tuning (e.g., 0.7 vector + 0.3 BM25) should be validated against your retrieval quality metrics — defaults are starting points
  • AlloyDB AI functions execute synchronously within SQL transactions — avoid calling slow models in high-frequency OLTP paths
  • AlloyDB Omni supports AlloyDB AI locally without Google Cloud connectivity — ideal for edge inference with pre-loaded models
  • Separate the embedding pipeline (batch UPDATE) from the query path — do not regenerate embeddings on every SELECT

Official Docs

Security Notes

Read-only planning and advisory. Do not modify production AlloyDB schemas, model endpoint registrations, or IAM bindings without explicit approval.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.