gRPC Golang (gRPC-Go)
Selective Reading Rule
Start with:
references/senior-master-standard.md
references/usage-routing.md
references/quality-checklist.md
Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.
Overview
Comprehensive guide for designing and implementing production-grade gRPC services in Go. Covers contract standardization with Buf, transport layer security via mTLS, and deep observability with OpenTelemetry interceptors.
Use this skill when
- Designing microservices communication with gRPC in Go.
- Building high-performance internal APIs using Protobuf.
- Implementing streaming workloads (unidirectional or bidirectional).
- Standardizing API contracts using Protobuf and Buf.
- Configuring mTLS for service-to-service authentication.
Do not use this skill when
- Building pure REST/HTTP public APIs without gRPC requirements.
- Modifying legacy
.proto files without the ability to introduce a new API version (e.g., api.v2) or ensure backward compatibility.
- Managing service mesh traffic routing (e.g., Istio/Linkerd), which is outside the application code scope.
Step-by-Step Guide
- Confirm Technical Context: Identify Go version, gRPC-Go version, and whether the project uses Buf or raw protoc.
- Confirm Requirements: Identify mTLS needs, load patterns (unary/streaming), SLOs, and message size limits.
- Plan Schema: Define package versioning (e.g.,
api.v1), resource types, and error mapping.
- Security Design: Implement mTLS for service-to-service authentication.
- Observability: Configure interceptors for tracing, metrics, and structured logging.
- Verification: Always run
buf lint and breaking change checks before finalizing code generation.
Refer to resources/implementation-playbook.md for detailed patterns, code examples, and anti-patterns.
Examples
Example 1: Defining a Service & Message (v1 API)
syntax = "proto3";
package api.v1;
option go_package = "github.com/org/repo/gen/api/v1;apiv1";
service UserService {
rpc GetUser(GetUserRequest) returns (GetUserResponse);
}
message User {
string id = 1;
string name = 2;
}
message GetUserRequest {
string id = 1;
}
message GetUserResponse {
User user = 1;
}
Best Practices
- ✅ Do: Use Buf to standardize your toolchain and linting with
buf.yaml and buf.gen.yaml.
- ✅ Do: Always use semantic versioning in package paths (e.g.,
package api.v1).
- ✅ Do: Enforce mTLS for all internal service-to-service communication.
- ✅ Do: Handle
ctx.Done() in all streaming handlers to prevent resource leaks.
- ✅ Do: Map domain errors to standard gRPC status codes (e.g.,
codes.NotFound).
- ❌ Don't: Return raw internal error strings or stack traces to gRPC clients.
- ❌ Don't: Create a new
grpc.ClientConn per request; always reuse connections.
Troubleshooting
- Error: Inconsistent Gen: If the generated code does not match the schema, run
buf generate and verify the go_package option.
- Error: Context Deadline: Check client timeouts and ensure the server is not blocking infinitely in streaming handlers.
- Error: mTLS Handshake: Ensure the CA certificate is correctly added to the
x509.CertPool on both client and server sides.
Limitations
- Does not cover service mesh traffic routing (Istio/Linkerd configuration).
- Does not cover gRPC-Web or browser-based gRPC integration.
- Assumes Go 1.21+ and gRPC-Go v1.60+; older versions may have different APIs (e.g.,
grpc.Dial vs grpc.NewClient).
- Does not cover L7 gRPC-aware load balancer configuration (e.g., Envoy, NGINX).
- Does not address Protobuf schema registry or large-scale schema governance beyond Buf lint.
Resources
Related Skills
- @golang-pro - General Go patterns and performance optimization outside the gRPC layer.
- @go-concurrency-patterns - Advanced goroutine lifecycle management for streaming handlers.
- @api-design-principles - Resource naming and versioning strategy before writing
.proto files.
- @docker-expert - Containerizing gRPC services and configuring TLS cert injection via Docker secrets.
1---2name: grpc-golang3description: ALWAYS use this when the request matches Grpc Golang: Build production-ready gRPC services in Go with mTLS, streaming, and observability.4---56# gRPC Golang (gRPC-Go)78## Selective Reading Rule910Start with:1112- `references/senior-master-standard.md`13- `references/usage-routing.md`14- `references/quality-checklist.md`1516Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.1718## Overview1920Comprehensive guide for designing and implementing production-grade gRPC services in Go. Covers contract standardization with Buf, transport layer security via mTLS, and deep observability with OpenTelemetry interceptors.2122## Use this skill when2324- Designing microservices communication with gRPC in Go.25- Building high-performance internal APIs using Protobuf.26- Implementing streaming workloads (unidirectional or bidirectional).27- Standardizing API contracts using Protobuf and Buf.28- Configuring mTLS for service-to-service authentication.2930## Do not use this skill when3132- Building pure REST/HTTP public APIs without gRPC requirements.33- Modifying legacy `.proto` files without the ability to introduce a new API version (e.g., `api.v2`) or ensure backward compatibility.34- Managing service mesh traffic routing (e.g., Istio/Linkerd), which is outside the application code scope.3536## Step-by-Step Guide37381. **Confirm Technical Context**: Identify Go version, gRPC-Go version, and whether the project uses Buf or raw protoc.392. **Confirm Requirements**: Identify mTLS needs, load patterns (unary/streaming), SLOs, and message size limits.403. **Plan Schema**: Define package versioning (e.g., `api.v1`), resource types, and error mapping.414. **Security Design**: Implement mTLS for service-to-service authentication.425. **Observability**: Configure interceptors for tracing, metrics, and structured logging.436. **Verification**: Always run `buf lint` and breaking change checks before finalizing code generation.4445Refer to `resources/implementation-playbook.md` for detailed patterns, code examples, and anti-patterns.4647## Examples4849### Example 1: Defining a Service & Message (v1 API)5051```proto52syntax = "proto3";53package api.v1;54option go_package = "github.com/org/repo/gen/api/v1;apiv1";5556service UserService {57 rpc GetUser(GetUserRequest) returns (GetUserResponse);58}5960message User {61 string id = 1;62 string name = 2;63}6465message GetUserRequest {66 string id = 1;67}6869message GetUserResponse {70 User user = 1;71}72```7374## Best Practices7576- ✅ **Do:** Use Buf to standardize your toolchain and linting with `buf.yaml` and `buf.gen.yaml`.77- ✅ **Do:** Always use semantic versioning in package paths (e.g., `package api.v1`).78- ✅ **Do:** Enforce mTLS for all internal service-to-service communication.79- ✅ **Do:** Handle `ctx.Done()` in all streaming handlers to prevent resource leaks.80- ✅ **Do:** Map domain errors to standard gRPC status codes (e.g., `codes.NotFound`).81- ❌ **Don't:** Return raw internal error strings or stack traces to gRPC clients.82- ❌ **Don't:** Create a new `grpc.ClientConn` per request; always reuse connections.8384## Troubleshooting8586- **Error: Inconsistent Gen**: If the generated code does not match the schema, run `buf generate` and verify the `go_package` option.87- **Error: Context Deadline**: Check client timeouts and ensure the server is not blocking infinitely in streaming handlers.88- **Error: mTLS Handshake**: Ensure the CA certificate is correctly added to the `x509.CertPool` on both client and server sides.8990## Limitations9192- Does not cover service mesh traffic routing (Istio/Linkerd configuration).93- Does not cover gRPC-Web or browser-based gRPC integration.94- Assumes Go 1.21+ and gRPC-Go v1.60+; older versions may have different APIs (e.g., `grpc.Dial` vs `grpc.NewClient`).95- Does not cover L7 gRPC-aware load balancer configuration (e.g., Envoy, NGINX).96- Does not address Protobuf schema registry or large-scale schema governance beyond Buf lint.9798## Resources99100- `resources/implementation-playbook.md` for detailed patterns, code examples, and anti-patterns.101- [Google API Design Guide](https://cloud.google.com/apis/design)102- [Buf Docs](https://buf.build/docs)103- [gRPC-Go Docs](https://grpc.io/docs/languages/go/)104- [OpenTelemetry Go Instrumentation](https://opentelemetry.io/docs/instrumentation/go/)105106## Related Skills107108- @golang-pro - General Go patterns and performance optimization outside the gRPC layer.109- @go-concurrency-patterns - Advanced goroutine lifecycle management for streaming handlers.110- @api-design-principles - Resource naming and versioning strategy before writing `.proto` files.111- @docker-expert - Containerizing gRPC services and configuring TLS cert injection via Docker secrets.