This walks you through the full cycle of static analysis for C/C++ projects: generating compile_commands.json, running clang-tidy with the right check categories, configuring .clang-tidy files, suppressing false positives with NOLINT, and integrating cppcheck or scan-build into CI. It's opinionated about which checks catch real bugs versus style noise, and includes a decision tree for picking between bugprone, modernize, performance, and security categories. The workflow is solid if you're triaging a noisy build or hardening a codebase before release. Most useful when you know static analysis matters but need the practical commands and suppression strategies to make it bearable.
npx skills add https://github.com/mohitmishra786/low-level-dev-skills --skill static-analysis