What problem does it solve? Analyzing undocumented network protocols is slow and error-prone when done ad hoc. This Skill provides a repeatable, authorization-aware workflow for reconstructing frame layouts, message dictionaries, and state machines from captured traffic and client binaries. ## Core Features & Use Cases - Frame Layout Recovery: Aligns multiple messages to identify magic bytes, length fields, sequence numbers, and CRC/HMAC checksums in custom TCP/UDP protocols. - Serialization Decoding: Recovers Protobuf, gRPC, FlatBuffers, and MessagePack schemas using tools like blackboxprotobuf and protoc --decode_raw. - PCAP-Driven Analysis: Extracts TCP payloads with tshark and drafts Wireshark dissectors, ImHex/010 templates, or Kaitai Struct definitions. - Use Case: Given a PCAP of a mobile game's private TCP protocol, produce a message type table (opcode, fields), a reproducible Python decode script, and a Connect-Auth-Ready state machine diagram. ## Quick Start Analyze the attached capture.pcap and reconstruct the custom binary protocol's frame layout and message dictionary.