cpp-coding-standards

Warn

Audited by Runlayer on Feb 24, 2026

Risk Level: MEDIUM
Scan Summary
Max Score
78%
Files
1
Flagged
1
Chunks
4
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
Max File Score
78%
Classification
KNOWN_SERVER_KNOWN_TOOL_LIST
Files Scanned
1
Files Flagged
1
Chunks Analyzed
4
Analyzed
Feb 24, 2026, 05:39 PM
Security Audit — runlayer — cpp-coding-standards