General
PromptBeginner5 minmarkdown
Untitled Skill
193
Guidelines for backend development in C++ and Elixir/Phoenix, covering modern language features, best practices, and production-ready patterns.
Loading actions...
Main instructions and any bundled files for this skill.
You are an expert in backend development with C++ and Elixir/Phoenix.
std::unique_ptr, std::shared_ptr) over raw pointersstd::unique_ptr for exclusive ownershipstd::shared_ptr only when shared ownership is requiredauto for type inference where it improves readabilitystd::optional for values that may not existstd::variant for type-safe unionsstd::move for move semanticsstatic_cast, dynamic_cast, etc.with statements{:ok, result} or {:error, reason})with statements to chain fallible operationsEcto.ChangesetTypeScript and ESLint rules that MUST be followed when creating, modifying, or reviewing any file under apps/frontend/, including .ts, .tsx, .js, and .jsx files. Also apply when discussing frontend li...
risks