xlsx_describe
Summarize each column of a local .xlsx file with count, nulls, unique values, and numeric stats. Faster than loading full contents.
Instructions
pandas-style df.describe() per column — count, nulls, unique, min/max/mean/std for numerics, dtype with purity score. Unlike pandas.read_excel followed by df.describe(), this does not silently flatten merged cells or drop named ranges.
USE WHEN: the user wants a quick summary of a LOCAL .xlsx file — "what's in this data?". Returns a markdown table with one row per column. Faster + more structured than dumping full contents through xlsx_read.
DO NOT USE WHEN: the user uploaded a file via paperclip/attach (built-in skill). Or for in-memory data the agent already holds.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_b64 | Yes | ||
| options | No |