cpp-coding-standards
Warn
Audited by Runlayer on Feb 24, 2026
Risk Level: MEDIUM
Scan Summary
Flagged Files (1)
SKILL.mdHIGH
78.3%
Malicious tool definition detected
Tool: SKILL.md [1/4] Description: --- name: cpp-coding-standards description: C++ coding standards based on the C++ Core Guidelines (isocpp.github.io).
Tool: SKILL.md [2/4]
Tool: SKILL.md [3/4] Description: lock | | **CP.42** | Don't wait without a condition | | **CP.44** | Remember to name your `lock_guard`s and `unique_lock`s | | **CP.100** | Don't use lock-free programming unless you absolutely have to | ### Safe Locking ```cpp // CP.20 + CP.44: RAII locks, always named class ThreadSafeQueue { public: void push(int value) { std::lock_guard<std::mutex> lock(mutex_); // CP.44: named!
Tool: SKILL.md [4/4]
Audit Metadata