Protocol Buffers
When You Need This Skill
- Creating or editing
.proto files
- Setting up
buf.yaml or buf.gen.yaml
- Designing gRPC or Connect services
- Adding protovalidate constraints
- Troubleshooting buf lint or breaking change errors
Core Workflow
1. Match Project Style
Before writing proto code, review existing .proto files in the project.
Match conventions for naming, field ordering, structural patterns, validation, and documentation style.
If none exists, ask the user what style should be used or an existing library to emulate.
2. Write Proto Code
- Apply universal best practices from best_practices.md
- Add protovalidate constraints to every field—this is not optional for production APIs
- For service templates, see assets/
3. Verify Changes
Always run after making changes:
buf format -w && buf lint
Check for a Makefile first—many projects use make lint or make format.
Fix all errors before considering the change complete.
Quick Reference
| Task |
Reference |
| Field types, enums, oneofs, maps |
quick_reference.md |
| Schema evolution, breaking changes |
best_practices.md |
| Validation constraints |
protovalidate.md |
| Complete service examples |
examples.md, assets/ |
| buf CLI, buf.yaml, buf.gen.yaml |
buf_toolchain.md |
| Migrating from protoc |
migration.md |
| Lint errors, common issues |
troubleshooting.md |
| Proto API review checklist |
review_checklist.md |
Project Setup
New Project
Create directory structure:
├── buf.yaml
├── buf.gen.yaml
└── proto/
└── company/
└── domain/
└── v1/
└── service.proto
buf.yaml sits above proto/: modules[].path resolves relative to the
config's own directory, so a buf.yaml inside proto/ makes Buf look for
proto/proto.
Use assets/buf.yaml as starting point
Add buf.build/bufbuild/protovalidate as a dependency in buf.yaml and run buf dep update
Use assets/buf.gen.*.yaml for code generation config
Code Generation Templates
| Template |
Use For |
buf.gen.go.yaml |
Go with gRPC |
buf.gen.go-connect.yaml |
Go with Connect |
buf.gen.ts.yaml |
TypeScript with Connect |
buf.gen.python.yaml |
Python with gRPC |
buf.gen.java.yaml |
Java with gRPC |
Proto File Templates
Located in assets/proto/example/v1/:
| Template |
Description |
book.proto |
Entity message, BookRef oneof, enum |
book_service.proto |
Full CRUD with batch ops, pagination, ordering |
Common Tasks
Add a new field
- Use next sequential field number
- Add protovalidate constraints: every field should have validation appropriate to its type (format validators, length bounds, numeric ranges, enum constraints, etc.)
- Document the field
- Run
buf format -w && buf lint
Remove a field
- Reserve the field number AND name:
reserved 4;
reserved "old_field_name";
- Run
buf breaking --against '.git#branch=main' to verify
Add protovalidate constraints
Every field in a production API should have appropriate validation.
See protovalidate.md for the full reference.
Common constraints:
- String formats:
.string.uuid, .string.email, .string.uri, .string.pattern
- String bounds:
.string.min_len, .string.max_len
- Numeric bounds:
.int32.gte, .uint32.lte
- Enum validation:
.enum.defined_only, .enum.not_in = 0
- Repeated bounds:
.repeated.min_items, .repeated.max_items
- Required fields:
(buf.validate.field).required = true
- Oneof required:
(buf.validate.oneof).required = true
Verification Checklist
After making changes:
1---2name: protobuf3description: Use when working with Protocol Buffer (.proto) files, buf.yaml, buf.gen.yaml, or buf.lock. Covers proto design, buf CLI, gRPC/Connect services, protovalidate constraints, schema evolution, and troubleshooting lint/breaking errors.4---56# Protocol Buffers78## When You Need This Skill910- Creating or editing `.proto` files11- Setting up `buf.yaml` or `buf.gen.yaml`12- Designing gRPC or Connect services13- Adding protovalidate constraints14- Troubleshooting buf lint or breaking change errors1516## Core Workflow1718### 1. Match Project Style1920Before writing proto code, review existing `.proto` files in the project.21Match conventions for naming, field ordering, structural patterns, validation, and documentation style.22If none exists, ask the user what style should be used or an existing library to emulate.2324### 2. Write Proto Code2526- Apply universal best practices from [best_practices.md](references/best_practices.md)27- Add [protovalidate](references/protovalidate.md) constraints to every field—this is not optional for production APIs28- For service templates, see [assets/](assets/)2930### 3. Verify Changes3132**Always run after making changes:**3334```bash35buf format -w && buf lint36```3738Check for a Makefile first—many projects use `make lint` or `make format`.3940Fix all errors before considering the change complete.4142## Quick Reference4344| Task | Reference |45|------|-----------|46| Field types, enums, oneofs, maps | [quick_reference.md](references/quick_reference.md) |47| Schema evolution, breaking changes | [best_practices.md](references/best_practices.md) |48| Validation constraints | [protovalidate.md](references/protovalidate.md) |49| Complete service examples | [examples.md](references/examples.md), [assets/](assets/) |50| buf CLI, buf.yaml, buf.gen.yaml | [buf_toolchain.md](references/buf_toolchain.md) |51| Migrating from protoc | [migration.md](references/migration.md) |52| Lint errors, common issues | [troubleshooting.md](references/troubleshooting.md) |53| Proto API review checklist | [review_checklist.md](references/review_checklist.md) |5455## Project Setup5657### New Project58591. Create directory structure:60 ```61 ├── buf.yaml62 ├── buf.gen.yaml63 └── proto/64 └── company/65 └── domain/66 └── v1/67 └── service.proto68 ```6970 `buf.yaml` sits above `proto/`: `modules[].path` resolves relative to the71 config's own directory, so a `buf.yaml` inside `proto/` makes Buf look for72 `proto/proto`.73742. Use `assets/buf.yaml` as starting point753. Add `buf.build/bufbuild/protovalidate` as a dependency in `buf.yaml` and run `buf dep update`764. Use `assets/buf.gen.*.yaml` for code generation config7778### Code Generation Templates7980| Template | Use For |81|----------|---------|82| `buf.gen.go.yaml` | Go with gRPC |83| `buf.gen.go-connect.yaml` | Go with Connect |84| `buf.gen.ts.yaml` | TypeScript with Connect |85| `buf.gen.python.yaml` | Python with gRPC |86| `buf.gen.java.yaml` | Java with gRPC |8788### Proto File Templates8990Located in `assets/proto/example/v1/`:9192| Template | Description |93|----------|-------------|94| `book.proto` | Entity message, BookRef oneof, enum |95| `book_service.proto` | Full CRUD with batch ops, pagination, ordering |9697## Common Tasks9899### Add a new field1001011. Use next sequential field number1022. Add [protovalidate](references/protovalidate.md) constraints: every field should have validation appropriate to its type (format validators, length bounds, numeric ranges, enum constraints, etc.)1033. Document the field1044. Run `buf format -w && buf lint`105106### Remove a field1071081. Reserve the field number AND name:109 ```protobuf110 reserved 4;111 reserved "old_field_name";112 ```1132. Run `buf breaking --against '.git#branch=main'` to verify114115### Add protovalidate constraints116117Every field in a production API should have appropriate validation.118See [protovalidate.md](references/protovalidate.md) for the full reference.119120Common constraints:121- String formats: `.string.uuid`, `.string.email`, `.string.uri`, `.string.pattern`122- String bounds: `.string.min_len`, `.string.max_len`123- Numeric bounds: `.int32.gte`, `.uint32.lte`124- Enum validation: `.enum.defined_only`, `.enum.not_in = 0`125- Repeated bounds: `.repeated.min_items`, `.repeated.max_items`126- Required fields: `(buf.validate.field).required = true`127- Oneof required: `(buf.validate.oneof).required = true`128129## Verification Checklist130131After making changes:132- [ ] Every field has appropriate protovalidate constraints133- [ ] `buf format -w` (apply formatting)134- [ ] `buf lint` (check style rules)135- [ ] `buf breaking --against '.git#branch=main'` (if modifying existing schemas)