GE

generating-grpc-services

Generate high-performance gRPC code and stubs from .proto files.

Install

mkdir -p .claude/skills/generating-grpc-services && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/7858" && unzip -o skill.zip -d .claude/skills/generating-grpc-services && rm skill.zip

Installs to .claude/skills/generating-grpc-services

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Generate gRPC service definitions, stubs, and implementations from Protocol
75 charsno explicit “when” trigger
Advanced

Key capabilities

  • Generate gRPC service definitions from Protocol Buffer files.
  • Scaffold client and server stubs for gRPC methods.
  • Implement server-side RPC handlers with proper gRPC status codes.
  • Add server interceptors for authentication and logging.
  • Configure TLS transport security for production.

How it works

This skill uses Protocol Buffer files to generate gRPC service definitions, client/server stubs, and implementations. It supports various RPC methods, error handling, interceptors, and TLS security.

Inputs & outputs

You give it
Protocol Buffer (`.proto`) files
You get back
Generated gRPC service definitions, client/server stubs, and implementations

When to use generating-grpc-services

  • Creating new gRPC microservices
  • Generating server stubs for streaming
  • Scaffolding API endpoints

About this skill

Generating gRPC Services

Overview

Generate gRPC service definitions, client/server stubs, and implementations from Protocol Buffer (protobuf) .proto files. Scaffold unary, server-streaming, client-streaming, and bidirectional-streaming RPC methods with proper error status codes, interceptors for auth/logging, and health check service registration.

Prerequisites

  • Protocol Buffers compiler (protoc) v3.21+ installed
  • Language-specific gRPC plugin: grpc_tools_node_protoc_plugin (Node.js), grpcio-tools (Python), or Go gRPC plugin
  • buf CLI for proto linting and breaking change detection (recommended)
  • gRPC testing tool: grpcurl, evans, or BloomRPC
  • TLS certificates for production transport security (mTLS recommended for service-to-service)

Instructions

  1. Read existing .proto files using Glob and Read, or design new service definitions with message types, RPC methods, and streaming patterns per service requirements.
  2. Define proto3 message types with appropriate field types, using google.protobuf.Timestamp for dates, google.protobuf.Struct for dynamic fields, and oneof for polymorphic messages.
  3. Compile .proto files with protoc to generate language-specific stubs, server interfaces, and client libraries using the appropriate gRPC plugin.
  4. Implement server-side RPC handlers for each method, returning proper gRPC status codes (OK, NOT_FOUND, INVALID_ARGUMENT, PERMISSION_DENIED) instead of generic errors.
  5. Add server interceptors for authentication (extracting JWT from metadata), request logging with correlation IDs, and deadline propagation across service calls.
  6. Implement health check service (grpc.health.v1.Health) and reflection service for runtime introspection by tools like grpcurl.
  7. Configure TLS transport security, preferring mutual TLS (mTLS) for service-to-service communication with certificate rotation support.
  8. Write integration tests using an in-process test server, validating all RPC methods including streaming scenarios with multiple messages and error conditions.
  9. Generate a REST-to-gRPC gateway using grpc-gateway annotations for HTTP/JSON clients that need to access gRPC services.

See ${CLAUDE_SKILL_DIR}/references/implementation.md for the full implementation guide.

Output

  • ${CLAUDE_SKILL_DIR}/proto/ - Protocol Buffer service and message definitions
  • ${CLAUDE_SKILL_DIR}/generated/ - Auto-generated stubs and client/server code
  • ${CLAUDE_SKILL_DIR}/src/services/ - RPC method handler implementations
  • ${CLAUDE_SKILL_DIR}/src/interceptors/ - Auth, logging, and metrics interceptors
  • ${CLAUDE_SKILL_DIR}/src/health/ - Health check service implementation
  • ${CLAUDE_SKILL_DIR}/gateway/ - REST-to-gRPC gateway configuration (optional)
  • ${CLAUDE_SKILL_DIR}/tests/ - Integration tests with in-process test server

Error Handling

ErrorCauseSolution
INVALID_ARGUMENT (3)Request message fails field validation constraintsReturn detailed BadRequest error details with field-level violation descriptions
NOT_FOUND (5)Requested resource does not existInclude resource type and ID in error message metadata for client debugging
PERMISSION_DENIED (7)Caller lacks required role or scope in JWT metadataReturn required permission in error details; log denied access attempt
DEADLINE_EXCEEDED (4)RPC took longer than client-specified deadlinePropagate deadlines to downstream calls; implement cascading timeout budgets
UNAVAILABLE (14)Server overloaded or downstream dependency unreachableClient should retry with exponential backoff; server should implement backpressure

Refer to ${CLAUDE_SKILL_DIR}/references/errors.md for comprehensive error patterns.

Examples

User management service: Define UserService with CreateUser, GetUser, ListUsers (server-streaming for large result sets), and UpdateUser RPCs with field mask support for partial updates.

Real-time event stream: Bidirectional streaming RPC where clients subscribe to event topics and the server pushes filtered events, with flow control via client-side backpressure signals.

gRPC-Web frontend: Generate gRPC-Web compatible stubs for browser clients using Envoy proxy for HTTP/2 to gRPC translation, enabling direct proto-based communication from React/Vue applications.

See ${CLAUDE_SKILL_DIR}/references/examples.md for additional examples.

Resources

Prerequisites

Protocol Buffers compiler (`protoc`) v3.21+ installedLanguage-specific gRPC plugin`buf` CLI for proto linting and breaking change detectiongRPC testing tool

Limitations

  • Request message failures in field validation constraints should return `INVALID_ARGUMENT`.
  • Requested resources that do not exist should return `NOT_FOUND`.
  • Callers lacking required roles or scopes should return `PERMISSION_DENIED`.

How it compares

This skill automates the generation of gRPC service components from protobuf files, providing a structured approach to building high-performance microservices compared to manual implementation.

Compared to similar skills

generating-grpc-services side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
generating-grpc-services (this skill)127dReviewAdvanced
API service02moNo flagsBeginner
senior-backend04moReviewAdvanced
backend-development05moNo flagsAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

More by jeremylongshore

View all by jeremylongshore

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

14123

ollama-setup

jeremylongshore

Configure auto-configure Ollama when user needs local LLM deployment, free AI alternatives, or wants to eliminate hosted API costs. Trigger phrases: "install ollama", "local AI", "free LLM", "self-hosted AI", "replace OpenAI", "no API costs". Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.

1167

backtesting-trading-strategies

jeremylongshore

Backtest crypto and traditional trading strategies against historical data. Calculates performance metrics (Sharpe, Sortino, max drawdown), generates equity curves, and optimizes strategy parameters. Use when user wants to test a trading strategy, validate signals, or compare approaches. Trigger with phrases like "backtest strategy", "test trading strategy", "historical performance", "simulate trades", "optimize parameters", or "validate signals".

1071

generating-database-seed-data

jeremylongshore

Process this skill enables AI assistant to generate realistic test data and database seed scripts for development and testing environments. it uses faker libraries to create realistic data, maintains relational integrity, and allows configurable data volumes. u... Use when working with databases or data models. Trigger with phrases like 'database', 'query', or 'schema'.

1033

cursor-codebase-indexing

jeremylongshore

Execute set up and optimize Cursor codebase indexing. Triggers on "cursor index setup", "codebase indexing", "index codebase", "cursor semantic search". Use when working with cursor codebase indexing functionality. Trigger with phrases like "cursor codebase indexing", "cursor indexing", "cursor".

885

testing-mobile-apps

jeremylongshore

Execute mobile app testing on iOS and Android devices/simulators. Use when performing specialized testing. Trigger with phrases like "test mobile app", "run iOS tests", or "validate Android functionality".

810

You might also like

API service

TheBearIsOne

Use this skill when: - adding HTTP endpoints; - defining request and response models; - wiring document generation into an API surface; - shaping controller, route, or handler behavior.

00

senior-backend

Cor-Incorporated

Guides backend system development with Node.js, Express, Go, Python, PostgreSQL, GraphQL, and REST APIs. Use when the user says: 'design an API', 'optimize database queries', 'implement authentication', 'set up backend', 'create API endpoint', 'database migration', 'fix N+1 query', 'add rate limitin

00

backend-development

hoadh

Build backends with Node.js, Python, Go (NestJS, FastAPI, Django). Use for REST/GraphQL/gRPC APIs, auth (OAuth, JWT), databases, microservices, security (OWASP), Docker/K8s.

00

api-dev

ComeOnOliver

Modern API development patterns for building high-performance, scalable web services. Expert in async/await patterns, REST/GraphQL APIs, middleware, error handling, rate limiting, OpenAPI documentation, testing, and production optimizations. Framework-agnostic patterns that work with Python, Node.js

00

architecture-patterns

wshobson

Implement proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design. Use when architecting complex backend systems or refactoring existing applications for better maintainability.

55214

backend-expert

FlavioProgramador

Advanced backend engineering guidelines focusing on clean architecture, API standards, performance, asynchronous jobs, and clean code principles.

00

Search skills

Search the agent skills registry