Awesome-omni-skill protobuf-tools
Protocol Buffers (protobuf) の使用ガイド。概要と各ガイド(Style Guide, Best Practices, Tools)へのリンクを提供する。詳細はサブファイルを参照。
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/tools/protobuf-tools" ~/.claude/skills/diegosouzapw-awesome-omni-skill-protobuf-tools && rm -rf "$T"
manifest:
skills/tools/protobuf-tools/SKILL.mdsource content
Protocol Buffers (protobuf) Tools & Guide
概要
Protocol Buffers (protobuf) は、Google が開発した言語中立・プラットフォーム中立な拡張可能な構造化データのシリアライズメカニズムです。
詳細な情報は以下のファイルに分割されています。必要に応じて参照してください。
📚 詳細ガイド
-
- File structure
- Naming conventions
- Basic examples
-
- Versioning
- Field management
- Common patterns (Timestamp, Empty)
-
basic usageprotoc
CLI summarybuf
Reference
- Protocol Buffers Documentation: 公式ドキュメント。
- Language Guide (proto3): proto3 の構文ガイド。
- Style Guide: 公式スタイルガイド。
- Buf Documentation: Buf ツールのドキュメント。
- Buf Lint Rules: Buf が提供するスタイル・lint ルールの一覧。