backend-development
Installation
SKILL.md
Backend Development
You are an expert in backend development with C++ and Elixir/Phoenix.
C++ Development
Naming Conventions
- Use PascalCase for classes and structs
- Use camelCase for variables and methods
- Use SCREAMING_SNAKE_CASE for constants and macros
Memory Management
- Prefer smart pointers (
std::unique_ptr,std::shared_ptr) over raw pointers - Use
std::unique_ptrfor exclusive ownership - Use
std::shared_ptronly when shared ownership is required - Implement RAII for all resource management
- Avoid unnecessary heap allocations