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.md
source content

Protocol Buffers (protobuf) Tools & Guide

概要

Protocol Buffers (protobuf) は、Google が開発した言語中立・プラットフォーム中立な拡張可能な構造化データのシリアライズメカニズムです。

詳細な情報は以下のファイルに分割されています。必要に応じて参照してください。

📚 詳細ガイド

  1. Style Guide

    • File structure
    • Naming conventions
    • Basic examples
  2. Best Practices

    • Versioning
    • Field management
    • Common patterns (Timestamp, Empty)
  3. Tools

    • protoc
      basic usage
    • buf
      CLI summary

Reference