cpp-core-guidelines

Installation
SKILL.md

C++ Core Guidelines

Overview

These guidelines help write C++ code that is:

  • Type-safe: No implicit violations of the type system
  • Resource-safe: No leaks (memory, handles, locks, etc.)
  • Performant: Efficient without sacrificing correctness
  • Correct: Catches more logic errors at compile time

Load Reference by Scenario

Choose the reference file based on what you're doing:

Installs
17
GitHub Stars
1
First Seen
Feb 17, 2026