m11-ecosystem/SKILL.md
Mastering C++ Ecosystem: CMake, vcpkg, Conan, Sanitizers, Tooling.
npx skillsauth add 13eholder/modern-cpp-skills m11-ecosystemInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
How do I build and maintain this?
Is the build reproducible?
Are you checking for bugs?
fsanitize=address (ASan) catches 90% of memory errors.| Tool | Purpose | | -------------- | ---------------------------------------- | | CMake | Build System Generator. | | vcpkg | MSFT Package Manager (Source based). | | Conan | Python Package Manager (Binary caching). | | ASan | Address Sanitizer (Memory bugs). | | Clang-Tidy | Static Analysis / Linter. |
tools
Common C++ Anti-Patterns. Triggers: global variables, new/delete, C-style cast, macros, void*.
data-ai
C++ Mental Models: Pointer vs Reference, Initialization, Undefined Behavior.
data-ai
Mastering C++ Domain Errors: Exception Hierarchies, System Errors, and Expected.
data-ai
Mastering C++ Lifecycle: RAII, Destructors, Static Initialization, Rule of 5.