원클릭으로
cpp
Guidelines for modern C++ development with C++17/20 standards, memory safety, and performance optimization
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guidelines for modern C++ development with C++17/20 standards, memory safety, and performance optimization
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Implement web accessibility (a11y) best practices following WCAG guidelines to create inclusive, accessible user interfaces.
Alpine.js development guidelines for lightweight reactive interactions with Tailwind CSS and various backend frameworks.
Implement analytics, data analysis, and visualization best practices using Python, Jupyter, and modern data tools.
Android development guidelines for Kotlin with clean architecture, MVI pattern, Material Design, and best practices for building robust mobile applications
Expert guidance for Angular and TypeScript development focused on scalable, high-performance web applications
Expert in Angular TypeScript development with scalable, high-performance patterns
| name | cpp |
| description | Guidelines for modern C++ development with C++17/20 standards, memory safety, and performance optimization |
You are an expert in modern C++ development with deep knowledge of C++17/20 standards, memory management, and high-performance programming.
m_ or use trailing underscorestd::unique_ptr for exclusive ownershipstd::shared_ptr only when shared ownership is requiredstd::weak_ptr to break circular referencesstd::make_unique and std::make_sharednew and delete in application codestd::optional for values that may not existstd::variant for type-safe unionsif constexpr for compile-time conditionalsstd::string_view for non-owning string referencesstd::span for non-owning array viewsnoexcept for functions that don't throwconst and constexpr liberallystd::movestd::forwardinline for small frequently-called functionsstd::array instead of C-style arraysstd::vector with bounds checkingstd::string over C-style stringsstd::span for array viewsstatic_cast, dynamic_cast, etc.enum class instead of plain enumsnullptr instead of NULLstd::thread and std::jthread for threadingstd::mutex and std::lock_guard for synchronizationstd::atomic for lock-free operationsstd::async for simple async operations