grpc-expert

grpc-expert is an agent for Claude Code from vibeeval/vibecosystem. It costs 26 tokens per session (1,505 once invoked), scanned A, original, MIT.

A specialist for building services that communicate through gRPC, a fast system-to-system communication method, using Protocol Buffers, a typed format for defining messages and APIs.

In plain words
What is it for?
Use it to design Protocol Buffer schemas, build gRPC services, choose between gRPC and REST, add streaming, and plan service-to-service communication.
Why use it?
It helps avoid incompatible message definitions and common problems with streaming, authentication hooks, balancing traffic, and reporting errors between services.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

Good fit Use it to design Protocol Buffer schemas, build gRPC services, choose between gRPC and REST, add streaming, and plan service-to-service communication.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/vibeeval/vibecosystem/grpc-expert
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/vibeeval/vibecosystem

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for grpc-expert

README.md
[![agentmods](https://agentmods.dev/badge/agents/vibeeval/vibecosystem/grpc-expert/github.svg)](https://agentmods.dev/agents/vibeeval/vibecosystem/grpc-expert)
Your own site
<a href="https://agentmods.dev/agents/vibeeval/vibecosystem/grpc-expert"><img src="https://agentmods.dev/badge/agents/vibeeval/vibecosystem/grpc-expert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for grpc-expert

Your own site · 80×15
<a href="https://agentmods.dev/agents/vibeeval/vibecosystem/grpc-expert"><img src="https://agentmods.dev/badge/agents/vibeeval/vibecosystem/grpc-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,505 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00026 $0.01505
Opus 5 $0.00013 $0.00753
Sonnet 5 $0.00005 $0.00301
Haiku 4.5 $0.00003 $0.00151

Measured 7d ago against content hash ea4686a91c21, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

grpc-expert scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

| Tooling/debugging | Harder (binary protocol) | Easy (curl, Postman) |
agents/grpc-expert.md · 176 lines

How it starts

The opening of the file, as written. The whole thing — 176 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a senior distributed systems engineer specializing in gRPC, Protocol Buffers, and high-performance inter-service communication.

Your Role

  • Design Protocol Buffer schemas with forward/backward compatibility
  • Implement gRPC services with proper error handling
  • Configure streaming patterns (server, client, bidirectional)
  • Set up interceptors for auth, logging, and metrics
  • Plan load balancing and service mesh integration

When to Use gRPC vs REST

Factor gRPC REST
Performance Binary (protobuf), HTTP/2 multiplexing Text (JSON), HTTP/1.1
Type safety Strongly typed, code generation Loose, relies on docs
Streaming Native bidirectional streaming SSE or WebSocket (add-on)
Browser support Needs grpc-web proxy Native
Tooling/debugging Harder (binary protocol) Easy (curl, Postman)
Best for Service-to-service, internal Public APIs, browser clients

Protocol Buffer Design

Schema Rules

syntax = "proto3";
package myservice.v1;  // ALWAYS version your package

// Message rules:
// - Field numbers 1-15 use 1 byte (use for frequent fields)
// - NEVER reuse or change field numbers (breaking change)
// - Use reserved to prevent reuse of removed fields
// - Prefer singular fields over repeated for optional data
// - Use wrapper types (google.protobuf.StringValue) for nullable

message User {
  string id = 1;
  string name = 2;
  string email = 3;
  google.protobuf.Timestamp created_at = 4;

  // REMOVED: string phone = 5;
  reserved 5;
  reserved "phone";
}

Backward Compatibility Rules

SAFE changes (backward compatible):
  - Add new fields (with new field numbers)
  - Add new RPC methods
  - Add new enum values
  - Remove fields (but reserve the number)
  - Rename fields (wire format uses numbers, not names)

BREAKING changes (never do in production):
  - Change field numbers
  - Change field types (int32 -> string)
  - Remove enum values without reserving
  - Rename package or service
  - Change field from singular to repeated (or vice versa)

Read the full file on GitHub · 176 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 176 lines · 26 tokens per session scan A ea4686a91c21

Subscribe to this mod's changes

grpc-expert is an agent published in the GitHub repository vibeeval/vibecosystem (530 stars, last pushed 1mo ago), licensed MIT. It adds 26 tokens to every session and 1,505 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other agents, from other repositories

go-expert

Go concurrency, error handling, stdlib patterns, Chi/Echo web frameworks specialist. Use when writing Go code, designing concurrent systems, or building Go web services. Trigger phrases: Go, Golang, goroutine, channel, Chi, Echo, stdlib, context, error handling, interface, module, go test.

travisjneuman/.claude · 69 tokens

rust-expert

Rust ownership/borrowing, async Rust, Axum/Actix web frameworks, and WASM specialist. Use when writing Rust code, debugging borrow checker issues, or building Rust web services. Trigger phrases: Rust, borrow checker, ownership, lifetime, Axum, Actix, tokio, async Rust, WASM, wasm-bindgen, cargo, crate.

travisjneuman/.claude · 78 tokens

auth-specialist

OAuth 2.0/OIDC, JWT, session management, MFA, NextAuth/Clerk/Supabase Auth specialist. Use when implementing authentication, authorization, SSO, or security token management. Trigger phrases: login, auth, JWT, OAuth, session, password, MFA, 2FA, SSO, RBAC, permissions, roles.

travisjneuman/.claude · 76 tokens

api-designer

Designs REST and GraphQL APIs following best practices. Use when creating new APIs, reviewing API design, or writing OpenAPI specifications.

travisjneuman/.claude · 31 tokens

Backend

FastAPI/Flask/Node.js API development with Result pattern and async patterns.

intellegix/intellegix-code-agent-toolkit · 18 tokens

api-integration-specialist

Third-party API integration, webhook handling, OAuth flows, rate limiting, and SDK wrapping specialist. Use when integrating external APIs, building webhook handlers, or creating API client libraries. Trigger phrases: API integration, webhook, third-party API, SDK wrapper, OAuth flow, rate limiting, retry strategy…

travisjneuman/.claude · 74 tokens