Run3 Filter Vulnerabilities by Severity Level
[COLM'26] SkillLearnBench is the first benchmark for evaluating continual learning methods that automatically generate agent skills.
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.
What its author says it does
Copied from the file, not written here
Filter vulnerability records to include only HIGH and CRITICAL severity levels with case-sensitive exact matching.
SKILL.md
0.8 KB, 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