Static Analysis Purpose Guide agents through selecting, running, and triaging static analysis tools for C/C++ — clang-tidy, cppcheck, and scan-build — including suppression strategies and CI integration. Triggers - "How do I run clang-tidy on my project?" - "What clang-tidy checks should I enable?" - "cppcheck is reporting false positives — how do I suppress them?" - "How do I set up scan-build for deeper analysis?" - "My build is noisy with static analysis warnings" - "How do I generate compile commands.json for clang-tidy?" Workflow 1. Generate compile commands.json clang-tidy requires a co…