data-storyteller
SKILL.md
Data Storyteller
Automatically transform raw data into compelling, insight-rich reports. Upload any CSV or Excel file and get back a complete analysis with visualizations, statistical summaries, and narrative explanations - all without writing code.
Core Workflow
1. Load and Analyze Data
from scripts.data_storyteller import DataStoryteller
# Initialize with your data file
storyteller = DataStoryteller("your_data.csv")
# Or from a pandas DataFrame
import pandas as pd
df = pd.read_csv("your_data.csv")
storyteller = DataStoryteller(df)