#include "protocol/protocol.h" namespace voicecat::protocol { // M0 stub. The frame codec + protobuf Envelope dispatch are the first M1 task // (AGENTS.md "Suggested first steps" #1). See docs/protocol.md §1–5. bool FrameCodec::feed(const uint8_t*, size_t, std::vector>&) { return true; // TODO(M1): real framing. } } // namespace voicecat::protocol