Agent skill
Analyzing Spreadsheets
Analyzes Excel spreadsheets, summarizes trends, and recommends charts when users mention spreadsheets, Excel workbooks, or .xlsx files.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/analyzing-spreadsheets
SKILL.md
Analyzing Spreadsheets
When to use
- User shares an Excel workbook or asks about spreadsheet analysis
- Tasks include summarizing metrics, spotting anomalies, or drafting charts
- Data lives in tabular form (CSV or XLSX)
Workflow
- Inspect workbook structure
python
import pandas as pd xl = pd.ExcelFile("input.xlsx") xl.sheet_names - Load relevant sheets
python
df = pd.read_excel("input.xlsx", sheet_name="Sheet1") df.head() - Clean and validate
- Drop empty columns/rows
- Normalize date formats with
pd.to_datetime - Verify numeric columns with
df.describe()
- Analyze and summarize
- Use groupby/pivot patterns from reference/pandas-recipes.md
- Highlight KPIs, trends, and outliers
- Recommend visuals
- Suggest chart types (line for time series, bar for categorical comparisons, heatmap for correlations)
- Provide short rationale per recommendation
Output expectations
- Concise summary (1–3 paragraphs) covering key findings
- Bullet list of insights with supporting numbers
- Optional chart suggestions with column mappings
Validation checklist
- Loaded the correct sheet(s) and reported row/column counts
- Highlighted missing or unusual data
- Referenced actual values from the workbook
- Included next-step recommendations (e.g., further slicing, charting)
Additional resources
- reference/pandas-recipes.md – common aggregation patterns
python -m pip install pandas openpyxl– install requirements if missing (Claude Code already includes pandas)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?