Csv reporting
Creating structured CSV reports for security findings.From its SKILL.md
npx -y skills add cxcscmu/SkillLearnBench --skill csv-reportingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
0.7 KB, 151 tokens by cl100k_base, as published. Nobody here has run it
Purpose
Format security vulnerability data into a CSV file with defined headers.
Required Fields
- Package name
- Installed version
- CVE ID
- Severity level
- CVSS score
- Fixed version
- Vulnerability title
- Reference URL
Python Example for CSV generation
import csv
data = [...] # List of dictionaries containing the required fields
headers = ['Package', 'Version', 'CVE_ID', 'Severity', 'CVSS_Score', 'Fixed_Version', 'Title', 'Url']
with open('/root/security_audit.csv', 'w', newline='') as f:
writer = csv.DictWriter(f, fieldnames=headers)
writer.writeheader()
writer.writerows(data)
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.