golang-grpc

golang grpc

samber ↓ 33k
Claude Code
View source ↗

What it does

  • Build mode — implementing a new gRPC server or client from scratch.
  • Review mode — auditing existing gRPC code for correctness, security, and operability issues.
  • protoc: brew install protobuf
  • protoc-gen-go: go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
  • protoc-gen-go-grpc: go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
  • Implement health check service (grpchealthv1) — Kubernetes probes need it to determine readiness
  • Use interceptors for cross-cutting concerns (logging, auth, recovery) — keeps business logic clean

Requirements & configuration

  • Implement health check service (grpchealthv1) — Kubernetes probes need it to determine readiness
  • | Unauthenticated | Missing or invalid token |
  • Most services do not need connection pooling — profile before adding complexity.

Derived from the skill's own SKILL.md documentation · extracted 2026-07-23

golang grpc

Source

Repository: https://github.com/samber/cc-skills-golang

golang-grpc FAQ

What does the golang-grpc skill do?

Provides gRPC usage guidelines, protobuf organization, and production-ready patterns for Golang microservices. Use when implementing, reviewing, or debugging gRPC servers/clients, writing proto files, setting up interceptors, handling gRPC errors with status codes, configuring TLS/mTLS, testing with bufconn, or working with streaming RPCs. Build mode — implementing a new gRPC server or client from scratch. Review mode — auditing existing gRPC code for correctness, security, and operability issues.

What does golang-grpc require?

Implement health check service (grpchealthv1) — Kubernetes probes need it to determine readiness | Unauthenticated | Missing or invalid token | Most services do not need connection pooling — profile before adding complexity.

How do I install golang-grpc?

Run: npx -y skills add https://github.com/samber/cc-skills-golang --skill golang-grpc --agent claude-code — the source lives at github.com/samber/cc-skills-golang.

Maintain golang-grpc?

Let people know it's listed here — add the badge (live metrics, light/dark aware) or a plain link to your README or docs.

golang-grpc on getagentictools
[![golang-grpc on getagentictools](https://getagentictools.com/badge/skills/samber-cc-skills-golang-golang-grpc.svg)](https://getagentictools.com/skills/samber-cc-skills-golang-golang-grpc?ref=badge)
npx agentictools info skills/samber-cc-skills-golang-golang-grpc

The second line is the CLI lookup for this page — handy in READMEs and docs.