grpc-testing

grpc-testing is a skill for Claude Code from aks-builds/quality-skills. It costs 120 tokens per session (2,630 once invoked), scanned B, original, MIT.

A guide for testing gRPC services, which let programs communicate using defined messages and procedures. It covers regular and streaming calls, protobuf schemas in .proto files, and tools such as grpcurl and ghz.

In plain words
What is it for?
Use it to design, debug, and load-test gRPC services, manage .proto schemas, and write tests in Go, Java, Python, Node, C#, Rust, or C++.
Why use it?
It helps avoid incorrect test patterns when working with protobuf and different gRPC server languages. It also helps account for details such as server reflection, streaming, and TLS.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is --proto ./proto/orders.proto \.

Part of the quality-skills plugin — 57 skills shipped together

Good fit Use it to design, debug, and load-test gRPC services, manage .proto schemas, and write tests in Go, Java, Python, Node, C#, Rust, or C++.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/aks-builds/quality-skills
agentmods
npx agentmods add skills/aks-builds/quality-skills/grpc-testing

Made for: Claude Code.

Or install quality-skills, the plugin that ships this one along with the rest of its 57 skills.

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-testing

README.md
[![agentmods](https://agentmods.dev/badge/skills/aks-builds/quality-skills/grpc-testing.svg)](https://agentmods.dev/skills/aks-builds/quality-skills/grpc-testing)
Your own site
<a href="https://agentmods.dev/skills/aks-builds/quality-skills/grpc-testing"><img src="https://agentmods.dev/badge/skills/aks-builds/quality-skills/grpc-testing.svg" alt="Measured on agentmods" height="20"></a>
Per session 120 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,630 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 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.00120 $0.02630
Opus 5 $0.00060 $0.01315
Sonnet 5 $0.00024 $0.00526
Haiku 4.5 $0.00012 $0.00263

Measured 8d ago against content hash 6f3bcc9cc8b7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade B, and why

grpc-testing scanned grade B 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 8d 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

grpcurl -plaintext -d '{"id":"ord-1001"}' localhost:9090 example.orders.Orders/GetOrder
skills/grpc-testing/SKILL.md · 248 lines

How it starts

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

gRPC Testing

You are an expert in testing gRPC services — unary and streaming RPCs, server reflection, in-process testing, load testing, and .proto schema management. Your goal is to help engineers write fast deterministic gRPC tests and avoid the patterns that bite teams new to protobuf. Don't fabricate gRPC library method names, buf commands, or .proto directives. When uncertain, point the reader to grpc.io for the language-specific docs.

Initial Assessment

Check .agents/qa-context.md (fallback: .claude/qa-context.md) before answering. Pay attention to:

  • Server language(s) — Go, Java, Python, Node, C#, Rust, C++. gRPC's test patterns differ by language.
  • Schema management — schemas live in .proto files. Are they in the same repo, a shared monorepo path, or a separate proto registry (Buf Schema Registry, internal artifact)? Generated code lives next to consumers.
  • Server reflection enabled? — server reflection lets grpcurl / evans interrogate a running service. Without it, you must provide .proto files to the client.
  • Streaming usage — unary RPCs are the easy case. Server-streaming, client-streaming, and bidi-streaming each need different test shapes.
  • TLS / mTLS — gRPC almost always runs over TLS in prod. Tests against insecure local gRPC may miss TLS-related bugs.

If the file does not exist, ask: language, schema location, streaming surface, TLS mode (insecure / TLS / mTLS).


Why gRPC needs its own approach

  • It's not HTTP/JSON. Tools and patterns from REST don't transfer directly.
  • Protobuf schemas are first-class. Schema evolution rules differ from JSON/OpenAPI.
  • HTTP/2 streaming means you have four RPC shapes (unary, server-streaming, client-streaming, bidi). Each needs distinct tests.
  • Error model is rich. gRPC status codes (OK, NOT_FOUND, UNAVAILABLE, ...) plus typed error details via google.rpc.Status. Asserting on string messages = fragile; assert on codes.

Layers of testing

Read the full file on GitHub · 248 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d ago First seen · 248 lines · 120 tokens per session scan B 6f3bcc9cc8b7

Subscribe to this mod's changes

grpc-testing is a skill published in the GitHub repository aks-builds/quality-skills (2 stars, last pushed 5d ago), licensed MIT. It adds 120 tokens to every session and 2,630 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it B with 1 finding (sends data to an external url). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.