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.
Related
- Skills overview · sqlGen
- Issue #451 — dataAnalystSkill v2 (tabular-aware)
- documentParsers