coding-standard-cpp

Installation
SKILL.md

C++ Coding Standards

When reviewing or generating C++ code, follow these rules:

File Naming

  • Source files: snake_case or PascalCase with .cpp extension (e.g., user_service.cpp or UserService.cpp)
  • Header files: Same base name with .h, .hpp, or .hxx extension
  • Template files: .tpp or .inl for template implementations
  • Be consistent within a project
Installs
26
Repository
jdubray/puffin
GitHub Stars
27
First Seen
Jan 22, 2026
coding-standard-cpp — jdubray/puffin