Use Buf
SkillDev toolsConfigure, inspect, update, validate, and troubleshoot Buf workspaces and modules. Use when working with buf.yaml, buf.lock, buf.gen.yaml or domain-specific Buf generation templates; managing BSR dependencies; formatting, linting, generating, detecting breaking Protobuf changes; locating dependency schemas; or diagnosing missing types and generation failures.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Use Buf skill
What this skill tells your AI
The instructions your AI receives, as published by moeru-ai/auv in .agents/skills/use-buf/SKILL.md and read by ahel’s review.
Use the Buf CLI as the source of truth for Protobuf compilation, dependency resolution, linting, breaking-change detection, and code generation.
Inspect Before Changing
- Read repository instructions.
- Search the repository root and likely API directories for
buf.yaml,buf.lock,buf.gen.yaml, andbuf.gen.<domain>.yamlfiles. - Inspect the configuration version, module paths, dependency declarations, lint policy, breaking policy, inputs, plugin pins, output paths, and existing generation scripts.
- Run
buf --versionand check repository/CI tool pins before using features from a newer configuration schema. - Diagnose configuration or dependency problems before changing
.protofiles to work around them.
Use one default buf.gen.yaml. Introduce buf.gen.<domain>.yaml only when generation products genuinely require isolated plugin sets, inputs, or outputs. Pass non-default templates explicitly with buf generate --template <file>.
Keep Configuration Responsibilities Clear
- Use
buf.yamlfor workspaces/modules, BSR dependencies, lint rules, breaking rules, policies, and Buf check plugins. - Use
buf.gen.yamlorbuf.gen.<domain>.yamlforprotoc-gen-*code-generation plugins, inputs, output directories, options, and managed mode. - Use
buf.lockas generated dependency resolution state. Do not edit it manually. - Keep configuration in the repository root or the established API workspace directory unless repository structure requires otherwise.
Read references/configuration.md before adding modules, dependencies, check plugins, generation templates, or output paths.
Manage Dependencies Deliberately
- Prefer BSR modules for maintained dependencies, including Google APIs, well-known types, Protovalidate, and grpc-gateway annotations.
- Add or remove dependencies in
buf.yaml, then runbuf dep updateand inspect thebuf.lockdiff. - Use
buf dep graph --format jsonto identify the resolved dependency chain. - Use
buf dep pruneonly after confirming an import is genuinely unused. - When a type appears missing, inspect configuration and the lockfile, run
buf dep update, then runbuf buildorbuf generateto obtain the compiler's concrete import/type error. - Never hardcode an operating system's Buf cache location. Export the pinned module with
buf exportwhen source inspection is required.
Required Validation
After changing first-party Protobuf or Buf configuration, MUST run:
buf lint
buf generate
buf breaking --against '.git#branch=main'
Also run buf format --diff or the repository's format check and all language-specific tests/type checks for generated outputs.
Do not skip the breaking check merely because a break is intentional. Run it, capture the violations, and report that the change is an approved experimental/unreleased break. If the repository does not have a main branch, report that exact baseline failure and resolve the intended integration baseline rather than silently omitting compatibility validation.
Diagnose in Dependency Order
- Confirm the current directory and discovered
buf.yaml. - Confirm module paths and import paths.
- Confirm dependencies and
buf.lockwithbuf dep graph. - Compile with
buf build. - Lint with
buf lint. - Generate with the selected template.
- Inspect plugin stderr, output collisions, and generated diffs.
- Run the breaking check against main.
Use $use-buf-plugins for remote/local plugin selection, offline generation, rate limits, or plugin wrappers. Read references/commands-and-troubleshooting.md for precise inspection commands and failure handling.
Signals
- GitHub stars
- 27
- Forks
- 4
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
use-buf- Source
- github.com/moeru-ai/auv