cpp

Installation
SKILL.md

Critical Patterns

Smart Pointers (REQUIRED)

// ✅ ALWAYS: Use smart pointers
auto user = std::make_unique<User>("John");
auto shared = std::make_shared<Config>();

// ❌ NEVER: Raw new/delete
User* user = new User("John");
delete user;

RAII (REQUIRED)

Installs
111
GitHub Stars
1
First Seen
Jan 26, 2026
cpp — poletron/custom-rules