agentsclimarketplace

Cvss report generation

Skill cxcscmu/SkillLearnBench/skills/b4-skill-creator-gemini-3.1-flash-lite-preview/dependency-vulnerability-check/cvss-report-generation

How to generate security audit reports in CSV format. Use this skill whenever you need to produce a `/root/security_audit.csv` report.From its SKILL.md

Install
npx -y skills add cxcscmu/SkillLearnBench --skill cvss-report-generation

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.2 KB, 226 tokens by cl100k_base, as published. Nobody here has run it

CVSS Report Generation

This skill provides instructions for generating standardized security audit reports in CSV format from scan data.

CSV Structure

The generated CSV must follow this structure: Package,Version,CVE_ID,Severity,CVSS_Score,Fixed_Version,Title,Url

Implementation Steps

  1. Prepare Data: Map the findings from your scan tool output into a consistent object structure.
  2. Handle Missing Values: For fields like Fixed_Version, if not available, record as "N/A".
  3. Format: Use Python's csv library for reliable CSV generation to handle escaping special characters.
  4. Writing: Output the final content to /root/security_audit.csv.
import csv

data = [...] # List of dictionaries

with open('/root/security_audit.csv', 'w', newline='') as f:
    writer = csv.DictWriter(f, fieldnames=['Package', 'Version', 'CVE_ID', 'Severity', 'CVSS_Score', 'Fixed_Version', 'Title', 'Url'])
    writer.writeheader()
    writer.writerows(data)

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,871. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.