jpskill.com
🛠️ 開発・MCP コミュニティ

gcp-functions

Deploy and manage serverless functions on Google Cloud Platform using Cloud Functions for event-driven applications.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o gcp-functions.zip https://jpskill.com/download/22072.zip && unzip -o gcp-functions.zip && rm gcp-functions.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/22072.zip -OutFile "$d\gcp-functions.zip"; Expand-Archive "$d\gcp-functions.zip" -DestinationPath $d -Force; ri "$d\gcp-functions.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して gcp-functions.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → gcp-functions フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1
📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

gcp-functions

Google Cloud Integration

This skill delegates all GCP provisioning and operations to the official Google Cloud Python client libraries.

# Core GCP client library
pip install google-cloud-python

# Vertex AI + Agent Engine (AI/ML workloads)
pip install google-cloud-aiplatform

# Specific service clients (install only what you need)
pip install google-cloud-bigquery      # BigQuery
pip install google-cloud-storage       # Cloud Storage
pip install google-cloud-pubsub        # Pub/Sub
pip install google-cloud-run           # Cloud Run

SDK Docs: https://github.com/googleapis/google-cloud-python Vertex AI SDK: https://cloud.google.com/vertex-ai/docs/python-sdk/use-vertex-ai-python-sdk

Use the Google Cloud Python SDK for all GCP provisioning and operational actions. This skill provides architecture guidance, cost modeling, and pre-flight requirements — the SDK handles execution.

Architecture Guidance

Consult this skill for:

  • GCP service selection and trade-off analysis
  • Cost estimation and optimization (committed use discounts, sustained use)
  • Pre-flight IAM / Workload Identity Federation requirements
  • IaC approach (Terraform AzureRM vs Deployment Manager vs Config Connector)
  • Integration patterns with Google Workspace and other GCP services
  • Vertex AI Agent Engine for multi-agent workflow design

Agent & AI Capabilities

Capability Tool
LLM agents Vertex AI Agent Engine
Model serving Vertex AI Model Garden
RAG Vertex AI Search + Embeddings API
Multi-agent Agent Development Kit (google/adk-python)
MCP Vertex AI Extensions (MCP-compatible)

Reference