agentsclimarketplace

Csv reporting

Skill cxcscmu/SkillLearnBench/skills/b1-one-shot-gemini-3.1-flash-lite-preview/dependency-vulnerability-check/csv-reporting

Creating structured CSV reports for security findings.From its SKILL.md

Install
npx -y skills add cxcscmu/SkillLearnBench --skill csv-reporting

Assembled 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.

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.