Data Analyzer
Data Analyzer
SkillIntermediateAnalyze structured data and generate insights, summaries, and visualizations.
Data Processingdataanalysisstatisticsinsights
When to Use
Ideal for agents that need to process CSV, JSON, or tabular data. Use when building analytics dashboards, report generators, or data exploration tools.
Usage Conditions
- User provides structured data for analysis
- Statistical insights or summaries are requested
- Data visualization or charting is needed
Parameter Schema
| Name | Type | Required | Description |
|---|---|---|---|
| data | object | The data object or array to analyze | |
| analysis_type | string | Type of analysis: summary, trends, outliers, correlation | |
| format | string | Output format: text, json, chart |
Implementation Notes
# Data Analyzer Skill ## Purpose Process and analyze structured data to extract meaningful insights. ## Capabilities - Statistical summaries (mean, median, mode, std dev) - Trend detection over time series - Outlier identification - Correlation analysis between variables ## Output Formats - Text summaries for human consumption - JSON for programmatic use - Chart specifications for visualization
Generated JSON Schema
{
"type": "object",
"name": "Data Analyzer",
"geneType": "skill",
"parameters": {
"data": { "type": "object", "required": true },
"analysis_type": { "type": "string", "required": true },
"format": { "type": "string" }
}
}