Run3 Filter Vulnerabilities by Severity Level
Filter vulnerability records to include only HIGH and CRITICAL severity levels with case-sensitive exact matching.From its SKILL.md
npx -y skills add cxcscmu/SkillLearnBench --skill run3_Filter-Vulnerabilities-by-Severity-LevelAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
0.8 KB, 152 tokens by cl100k_base, as published. Nobody here has run it
Filtering Logic
-
Severity comparison must be case-sensitive
- Match exactly:
"HIGH"or"CRITICAL" - Do NOT match:
"high","High","critical", etc.
- Match exactly:
-
Implementation
Include vulnerability if: severity == "HIGH" OR severity == "CRITICAL" -
Verify before filtering
- Extract actual severity values from JSON
- Check for uppercase/lowercase inconsistency in source data
- Convert to uppercase if needed:
severity.upper() == "HIGH"
-
Validation
- Count filtered records
- Confirm no excluded HIGH/CRITICAL records
- Confirm no included lower-severity records
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.