agentskit.js
Skills

dataAnalyst

Analyzes tabular data — loads, inspects, profiles, and explains findings in plain English.

import { dataAnalyst } from '@agentskit/skills'
import { s3, documentParsers } from '@agentskit/tools'

const runtime = createRuntime({
  adapter,
  skills: [dataAnalyst],
  tools: [
    ...s3({ client, bucket: 'datasets' }),
    ...documentParsers({ parseXlsx }),
  ],
})

When to reach for it

  • "Look at this CSV and tell me what's interesting."
  • Column-profile + anomaly hunting.
  • Lightweight EDA before handing off to a BI tool.

Behavior

  • Loads file → reads schema + head/tail.
  • Reports shape, dtypes, null %, basic stats.
  • Highlights outliers + correlations worth investigating.
  • Never fabricates a column that isn't there.
✎ Edit this page on GitHub·Found a problem? Open an issue →·How to contribute →

On this page