CSV Summary

Summarize a CSV file — row count, column types, missing values, and a preview table. Use when the user uploads a .csv and wants a quick overview before analysis.

Yasir-Khan-7 Updated

File contents

CSV Summary

When to use

The user has a CSV file and wants to understand its shape before doing anything else.

Steps

  1. Read the file path the user provided.
  2. Run scripts/summarize.py <path>.
  3. Report row count, column dtypes, null counts, and the first five rows.

Notes

  • Do not modify the source file.
  • If the file is larger than 100 MB, read it in chunks.

Yasir-Khan-7/skillguard/tree/main/examples/safe-skill commit 546d3166ed

Frequently asked questions

npx skillmds@latest add yasir-khan-7/csv-summary