Token导航 LogoToken导航TokenDH.com
运维和基础设施敏感数据github未标认证来源可访问clear审计通过

gcp-developmentGCP 开发

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

9,528

周安装

397

GitHub Stars

87

下载量

3,176
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gcp-development(GCP 开发)
来源仓库:https://github.com/mindrally/skills
仓库路径:skills/gcp-development
安装命令:
npx skills add https://github.com/mindrally/skills --skill gcp-development
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mindrally/skills --skill gcp-development

简介

用于加速 GCP 云原生应用的开发过程。

  • 提供 SDK 集成指导、API 调用示例和最佳实践参考。
  • 通过 GitHub 安装,无需特殊权限即可获取开发资源。
  • 建议结合本地 IDE 和模拟器进行前期验证。
  • 输出代码需适配项目现有架构和技术栈。gcp-development 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

GCP Development Best Practices

Overview

This skill provides comprehensive guidelines for developing applications on Google Cloud Platform (GCP), covering serverless computing, data services, Infrastructure as Code with Terraform, and security best practices.

Core Principles

  • Write clean, well-structured code using GCP client libraries
  • Use Infrastructure as Code (Terraform) for all infrastructure management
  • Follow Google Cloud security best practices and compliance guidelines
  • Implement comprehensive logging with Cloud Logging and monitoring with Cloud Monitoring

Code Organization and Structure

Terraform Module Structure

infrastructure/
├── main.tf           # Primary resources
├── variables.tf      # Input variables
├── outputs.tf        # Output values
├── versions.tf       # Provider versions
├── terraform.tfvars  # Variable values
└── modules/
    ├── compute/
    ├── storage/
    └── networking/

Application Structure

src/
├── functions/        # Cloud Functions
├── services/         # Cloud Run services
├── shared/           # Shared utilities
└── tests/            # Test files

Cloud Functions Guidelines

Function Configuration

import { HttpFunction } from '@google-cloud/functions-framework';

export const helloWorld: HttpFunction = async (req, res) => {
  try {
    // Validate request
    if (req.method !== 'POST') {
      res.status(405).send('Method Not Allowed');
      return;
    }

    // Business logic
    const result = await processRequest(req.body);

    res.status(200).json(result);
  } catch (error) {
    console.error('Function error:', error);
    res.status(500).json({ error: 'Internal Server Error' });
  }
};

Best Practices

  • Use 2nd generation Cloud Functions for better performance
  • Set appropriate memory and timeout limits
  • Use environment variables for configuration
  • Implement proper error handling and logging
  • Use connection pooling for database connections

Cloud Run Guidelines

Container Best Practices

  • Use distroless or minimal base images
  • Implement health check endpoints
  • Handle SIGTERM for graceful shutdown
  • Use Cloud Run services for HTTP workloads
  • Use Cloud Run jobs for batch processing

Dockerfile Example

FROM node:20-slim AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production

FROM gcr.io/distroless/nodejs20-debian12
WORKDIR /app
COPY --from=builder /app/node_modules ./node_modules
COPY . .
CMD ["dist/index.js"]

Service Configuration

# service.yaml
apiVersion: serving.knative.dev/v1
kind: Service
metadata:
  name: my-service
spec:
  template:
    spec:
      containers:
        - image: gcr.io/PROJECT_ID/my-service
          resources:
            limits:
              memory: 512Mi
              cpu: '1'
          env:
            - name: NODE_ENV
              value: production

Firestore Guidelines

Data Modeling

  • Design collections around query patterns
  • Use subcollections for hierarchical data
  • Implement composite indexes for complex queries
  • Use batch writes for multiple document updates

Best Practices

import { Firestore } from '@google-cloud/firestore';

const db = new Firestore();

// Use transactions for atomic operations
await db.runTransaction(async (transaction) => {
  const docRef = db.collection('users').doc(userId);
  const doc = await transaction.get(docRef);

  if (!doc.exists) {
    throw new Error('User not found');
  }

  transaction.update(docRef, {
    lastLogin: Firestore.FieldValue.serverTimestamp()
  });
});

BigQuery Guidelines

Query Best Practices

  • Use partitioned and clustered tables
  • Avoid SELECT * in production queries
  • Use parameterized queries to prevent SQL injection
  • Implement query caching where appropriate

Cost Optimization

  • Set up budget alerts
  • Use slot reservations for predictable workloads
  • Archive old data to Cloud Storage
  • Use materialized views for repeated queries

Cloud Storage Guidelines

Bucket Configuration

  • Use uniform bucket-level access
  • Enable versioning for important data
  • Set lifecycle rules for automatic cleanup
  • Use signed URLs for temporary access

Best Practices

import { Storage } from '@google-cloud/storage';

const storage = new Storage();
const bucket = storage.bucket('my-bucket');

// Generate signed URL for upload
const [url] = await bucket.file('uploads/file.pdf').getSignedUrl({
  version: 'v4',
  action: 'write',
  expires: Date.now() + 15 * 60 * 1000, // 15 minutes
  contentType: 'application/pdf',
});

Terraform Best Practices

Provider Configuration

terraform {
  required_version = ">= 1.0"

  required_providers {
    google = {
      source  = "hashicorp/google"
      version = "~> 5.0"
    }
  }

  backend "gcs" {
    bucket = "my-terraform-state"
    prefix = "terraform/state"
  }
}

provider "google" {
  project = var.project_id
  region  = var.region
}

Module Best Practices

  • Use versioned modules from Terraform Registry
  • Lock provider versions for consistency
  • Use workspaces for environment separation
  • Store state in Cloud Storage with encryption

Security Best Practices

IAM Configuration

  • Use service accounts with minimal permissions
  • Implement Workload Identity for GKE
  • Use IAM Conditions for fine-grained access
  • Regular audit with Policy Analyzer

Secret Management

import { SecretManagerServiceClient } from '@google-cloud/secret-manager';

const client = new SecretManagerServiceClient();

async function getSecret(secretName: string): Promise<string> {
  const [version] = await client.accessSecretVersion({
    name: `projects/PROJECT_ID/secrets/${secretName}/versions/latest`,
  });

  return version.payload?.data?.toString() || '';
}

Network Security

  • Use VPC Service Controls for sensitive data
  • Implement Cloud Armor for DDoS protection
  • Use Private Google Access for internal services
  • Configure firewall rules with least privilege

Deployment Best Practices

Blue/Green Deployments

  • Use traffic splitting in Cloud Run
  • Implement health checks before traffic shift
  • Have rollback strategy ready
  • Use Cloud Deploy for managed deployments

CI/CD with Cloud Build

# cloudbuild.yaml
steps:
  - name: 'node:20'
    entrypoint: npm
    args: ['ci']

  - name: 'node:20'
    entrypoint: npm
    args: ['test']

  - name: 'gcr.io/cloud-builders/docker'
    args: ['build', '-t', 'gcr.io/$PROJECT_ID/my-service', '.']

  - name: 'gcr.io/cloud-builders/docker'
    args: ['push', 'gcr.io/$PROJECT_ID/my-service']

  - name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
    entrypoint: gcloud
    args:
      - 'run'
      - 'deploy'
      - 'my-service'
      - '--image=gcr.io/$PROJECT_ID/my-service'
      - '--region=us-central1'

Observability

Cloud Logging

  • Use structured logging in JSON format
  • Include trace IDs for distributed tracing
  • Set up log-based metrics for monitoring
  • Configure log sinks for long-term storage

Cloud Monitoring

  • Create SLIs and SLOs for services
  • Set up alerting policies for critical metrics
  • Use custom metrics for business KPIs
  • Implement uptime checks for endpoints

Cloud Trace

import { TraceExporter } from '@google-cloud/opentelemetry-cloud-trace-exporter';
import { NodeTracerProvider } from '@opentelemetry/sdk-trace-node';

const provider = new NodeTracerProvider();
provider.addSpanProcessor(
  new BatchSpanProcessor(new TraceExporter())
);
provider.register();

Debugging Strategies

  • Use Cloud Debugger for production debugging
  • Implement error reporting with Error Reporting
  • Use Cloud Profiler for performance analysis
  • Test locally with emulators before deployment

Recommended Tools

  • gcloud CLI: Command-line interaction with GCP
  • Terraform: Infrastructure as Code
  • Cloud Code VS Code Extension: IDE integration
  • Docker: Local containerization
  • Emulator Suite: Local testing for Firestore, Pub/Sub, etc.

Common Pitfalls to Avoid

  1. Not using service accounts for workloads
  2. Hardcoding project IDs or credentials
  3. Ignoring cold start optimization for Cloud Functions
  4. Not setting up proper IAM bindings
  5. Missing Cloud Monitoring alerts
  6. Over-provisioning resources
  7. Not using VPC for sensitive workloads
  8. Ignoring cost optimization best practices

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.79%
按下载量换算914

OpenCode

22.96%
按下载量换算729

Antigravity

17.88%
按下载量换算568

Codex

12.37%
按下载量换算393

Gemini CLI

7.15%
按下载量换算227

github-copilot

3.23%
按下载量换算103

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills