Ревью C++ кода по Google Style Guide

★ 7.2 · vibe-coding

cpp-review is a Claude Code skill that reviews C++ code for compliance with the Google C++ Style Guide. It checks naming conventions (PascalCase for types and functions, snake_case for variables, trailing underscore for class members), header guards, class design, function structure, and modern C++ usage. Feedback is organized into three severity levels: 🔴 MUST FIX for violations and bugs, 🟡 SHOULD FIX for strong improvement recommendations, and 🟢 CONSIDER for optional suggestions. Specific checks include explicit on single-argument constructors, smart pointer usage, function length under 40 lines, and formatting rules like 2-space indent and 80-character line limit. Use it during pull request reviews or before committing to enforce consistent C++ style.