agentsclimarketplace

Csv analyzer

Skill joinalahmed/skilleval/examples/csv-analyzer

Analyze CSV files and extract key statistics. Use when user uploads CSV files.From its SKILL.md

Install
npx -y skills add joinalahmed/skilleval --skill csv-analyzer

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

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.0 KB, 236 tokens by cl100k_base, as published. Nobody here has run it

CSV Analyzer

When given a CSV file, analyze the data and provide:

  • Row count
  • Column names and types
  • Missing value statistics
  • Basic descriptive statistics (mean, median, std)

Steps

  1. Read the CSV file using pandas
  2. Validate the structure (at least 1 row, 1 column)
  3. Analyze each column:
    • Detect data type (numeric, string, date)
    • Calculate statistics for numeric columns
    • Count missing values
  4. Generate a summary report in JSON format

Output Format

Save results to analysis.json:

{
  "row_count": 100,
  "columns": [
    {
      "name": "age",
      "type": "numeric",
      "mean": 35.2,
      "median": 34.0,
      "std": 12.5,
      "missing_count": 3
    }
  ]
}

Error Handling

  • If file is not CSV format, report error
  • If file is empty, report error
  • If missing values > 50%, warn user

What ships with it: 1 file

1.2 KB alongside SKILL.md

evals/

Keep looking

Skills are one crate of 326,149. 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.