use-protobuf

use-protobuf is a skill for Codex from moeru-ai/auv. It costs 81 tokens per session (1,313 once invoked), scanned A, original, Apache-2.0.

Guidance for designing and reviewing Protobuf schemas used for gRPC services, REST gateways, OpenAPI descriptions, streaming protocols, and generated software-development kits. Protobuf schemas define the typed messages and operations that systems share.

In plain words
What is it for?
Use it to design RPC methods, requests, responses, streams, enums, errors, validation rules, API versions, and reusable Protobuf messages.
Why use it?
It helps keep service contracts explicit and compatible as they change. It also connects schema updates with validation, generated clients, OpenAPI output, tests, and review of generated differences.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents); $skill-name invocation.

Good fit Use it to design RPC methods, requests, responses, streams, enums, errors, validation rules, API versions, and reusable Protobuf messages.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/moeru-ai/auv/use-protobuf
View source ↗ moeru-ai/auv
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.

Any agent
npx skills add moeru-ai/auv --skill use-protobuf
Clone the repo
git clone --depth 1 https://github.com/moeru-ai/auv

Made for: Codex.

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 use-protobuf

README.md
[![agentmods](https://agentmods.dev/badge/skills/moeru-ai/auv/use-protobuf/github.svg)](https://agentmods.dev/skills/moeru-ai/auv/use-protobuf)
Your own site
<a href="https://agentmods.dev/skills/moeru-ai/auv/use-protobuf"><img src="https://agentmods.dev/badge/skills/moeru-ai/auv/use-protobuf/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 use-protobuf

Your own site · 80×15
<a href="https://agentmods.dev/skills/moeru-ai/auv/use-protobuf"><img src="https://agentmods.dev/badge/skills/moeru-ai/auv/use-protobuf.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,313 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00081 $0.01313
Opus 5 $0.00041 $0.00656
Sonnet 5 $0.00016 $0.00263
Haiku 4.5 $0.00008 $0.00131

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

Security

Grade A, and why

use-protobuf scanned grade A with 0 findings 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/use-protobuf/SKILL.md · 85 lines

How it starts

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

Use Protobuf

Treat Protobuf as the canonical typed contract for gRPC, REST gateway bindings, OpenAPI, generated SDKs, and shared data structures. Model the domain before optimizing generated code.

Workflow

  1. Read repository instructions and inspect existing .proto files, packages, versions, imports, generation configuration, and generated output conventions.
  2. Classify each service as gRPC-only or HTTP-exposed before adding annotations.
  3. Model every RPC, stream packet, enum, error, and reusable message with concrete types.
  4. Apply transport-specific validation and documentation rules.
  5. Evaluate compatibility according to the package's release state and version.
  6. Generate every configured SDK and OpenAPI artifact. Use $use-buf and $use-buf-plugins when available.
  7. Run repository tests and inspect generated diffs; never hand-edit generated code.

Define RPC Contracts Explicitly

  • Define a dedicated RPC method for every gRPC operation.
  • Name unary messages MethodRequest and MethodResponse.
  • Keep request and response messages distinct even when their current fields happen to match.
  • Use TitleCase service, method, message, and enum names; use lower_snake_case fields and UPPER_SNAKE_CASE enum values.
  • Prefer comments that explain semantics, units, identity, presence, ordering, and lifecycle rather than restating the field name.
rpc GetDocument(GetDocumentRequest) returns (GetDocumentResponse);

Model Streaming Without Base Payloads

Use the appropriate gRPC streaming form:

rpc ImportRecords(stream ImportRecordsStreamRequest) returns (ImportRecordsResponse);
rpc WatchJob(WatchJobRequest) returns (stream WatchJobStreamResponse);
rpc Transfer(stream TransferStreamRequest) returns (stream TransferStreamResponse);

MUST NOT create an abstract, generic, inherited, or catch-all base event/base payload for stream requests or responses. Define concrete stream event, step, or packet messages. When several variants may occur, use oneof whose alternatives are separate messages. Use one homogeneous stream message only when every packet genuinely has the same body and semantics, such as fixed-shape file chunks.

Read the full file on GitHub · 85 lines

Files

What ships with it

4 files 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. 9d ago First seen · 85 lines · 81 tokens per session scan A ad3662803871

Subscribe to this mod's changes

use-protobuf is a skill published in the GitHub repository moeru-ai/auv (27 stars, last pushed yesterday), licensed Apache-2.0. It adds 81 tokens to every session and 1,313 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

add-backend

Guide for adding a backend (Rust or Python) to the agent-sec-core security middleware. Use when creating new backends, integrating Rust or Python code into the security middleware, or extending with new backend actions.

alibaba/anolisa · 46 tokens

claude-api

Build, debug, and optimize Claude API / Anthropic SDK apps. Apps built with this skill should include prompt caching. Also handles migrating existing Claude API code between Claude model versions (4.5 → 4.6, 4.6 → 4.7, retired-model replacements). TRIGGER when: code imports anthropic/@anthropic-ai/sdk; user asks for…

Prismer-AI/PrismerCloud · 193 tokens

telegram

Owner-only Telegram text bridge and Mini App gateway for the existing Ouroboros interface.

razzant/ouroboros · 19 tokens

verify

Build, launch, and drive a local Honcho stack to verify a change at its runtime surface (the /v3 HTTP API and the deriver queue). Use when verifying a diff or confirming a change works in the running app.

plastic-labs/honcho · 49 tokens

remindb-setup

Config-first setup wizard for a remindb MCP server — run it as /remindb-setup (interactive), /remindb-setup automode (hands-off), or /remindb-setup only-config (bridge hosts: author .remindb/ only, no env wiring). Two passes. First-time (no server attached yet): detect the host, author the .remindb/ config…

radimsem/remindb · 202 tokens

binder-app

Build a small HTTP app (dashboard, kanban board, admin panel, custom UI) on top of an existing Binder workspace. Use when asked to "create an app", "build a dashboard", "show records in a chart", "make a kanban/board", "build an admin panel", or "add a UI on top of binder".

mpazik/Binder · 74 tokens