Data Analysis & Reference Enrichment
A two-mode skill: a decision-first, five-phase data analysis workflow, plus tooling to enrich or decompose skill/agent reference files.
Data & AnalyticsIntermediate★ 421⑂ 44AI score 7/10Last updated: Sep 19, 2026
What it does
The skill routes your request into one of two modes.
A. Data analysis (5 phases)
- FRAME — name the decision, the options, and the default action; "analysis without a decision is arithmetic"
- DEFINE — lock metric formulas, populations, windows and segments before loading data
- EXTRACT — pandas with a
csv.DictReaderfallback; quality gates on coverage, time gaps, segment size (30+) and missingness (<20%) - ANALYZE — Wilson score confidence intervals, Bonferroni correction for 6+ comparisons, effect size with base-rate context
- CONCLUDE — one-sentence headline, honest limitations, evidence mapped back to the decision
B. Reference enrichment / decomposition
- Extracts domain-heavy blocks out of a bloated SKILL.md into reference files, with snapshot-and-restore on validation failure
- Gap analysis → research → compile (max 500 lines/file, do-pairing rule) → two-tier validation → integration
Who it's for
- Analysts, PMs and growth folks running A/B tests, funnels, cohorts and KPI reporting
- Teams tired of dashboards that never say what to do next
- Advanced users maintaining their own Claude skills/agents (Mode B)
Examples
- "Analyze the A/B test in experiment_results.csv" → conversion delta with Wilson CIs, small segments merged or flagged, recommendation tied to the launch decision
- "Show monthly signup trend and churn cohorts" → data-quality report first, then a trend-template summary with stated limitations
- "My SKILL.md is bloated, decompose it" → detects extractable blocks, snapshots the file, moves content into references, restores automatically if validation fails
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/notque/vexjoy-agent/HEAD/skills/analysis/data/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/analysis/data folder from the GitHub repo notque/vexjoy-agent into my ~/.claude/skills/data/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/notque/vexjoy-agent.git /tmp/vexjoy-agent && mkdir -p ~/.claude/skills && cp -r /tmp/vexjoy-agent/skills/analysis/data ~/.claude/skills/data⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repository:
git clone https://github.com/notque/vexjoy-agent.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r vexjoy-agent/skills/analysis/data ~/.claude/skills/data - Confirm the bundled docs came along:
ls ~/.claude/skills/data/references - For Mode B, keep the repo's
scripts/directory and run Claude Code from the repo root, since the skill callspython3 scripts/*.py. - Restart Claude Code and try: "analyze this CSV for me".
- Optional:
pip install pandasfor richer profiling (the skill falls back to the standard library otherwise).
View source on GitHub ↗License: MIT