by liangdabiao
让小白都可以一键进行数据分析,搞互联网的,搞电商的,搞各种各样的,那么其实就会用到 互联网的数据分析, 例如互联网会关心 拉新,留存,促活,推荐,转化,A/B test, 用户分析 等等很多有用的数据分析。 命令就是“/do-more”.
# Add to your Claude Code skills
git clone https://github.com/liangdabiao/claude-data-analysis-ultra-mainA modern, intelligent data analysis platform built with Claude Code's sub-agents, slash-commands, skills, and hooks. Transform your data analysis workflow with AI-powered assistance and specialized analysis tools.
简单的一句话: 2个命令, /do-all 常规数据分析 ; /do-more 互联网数据分析 。 而分析数据是放在 /data_storage 。就这么简单,用起来吧!
注意: 下载项目下来,分析数据是放在 /data_storage [删去原来的demo数据] ,你需要先删除 complete_analysis 和 do_more_analysis 这两个文件夹。我这里放着是给你参考最终的分析结果,作为例子。
Place your dataset in the data_storage/ directory:
cp your_data.csv ./data_storage/
Use intuitive slash commands to analyze your data:
# Complete interactive workflow with human feedback checkpoints
/do-all
# ⭐ NEW: Automatic multi-skill analysis
/do-more
# Basic exploratory analysis
/analyze user_behavior_sample.csv exploratory
# Create visualizations
/visualize user_behavior_sample.csv all
# Generate analysis code
/generate python data-cleaning
# Create comprehensive report
/report user_behavior_sample.csv complete markdown
/do-more: Automatic Multi-Skill AnalysisBest for: Quick, automated analysis without configuration
/do-more # No parameters needed!
What it does:
data_storage/ directoryNo comments yet. Be the first to share your thoughts!
Output: do_more_analysis/integrated_results/Comprehensive_Analysis_Report.html
/do-all: Complete Interactive Analysis WorkflowBest for: Thorough analysis with human oversight and feedback
/do-all
What it does:
data_storage/ (no parameters needed!)Workflow Stages:
Output Directory:
complete_analysis/
├── data_quality_report/ # Stage 1 output
├── exploratory_analysis/ # Stage 2 output
├── hypothesis_reports/ # Stage 3 output
├── visualizations/ # Stage 4 output
├── generated_code/ # Stage 5 output
├── final_report/ # Stage 6 output
└── workflow_log/ # Execution logs
Execution Time: 10-30 minutes (depends on data size)
| Feature | /do-more | /do-all |
|---------|-----------|-----------|
| Data Source | Auto-scans data_storage/ | Reads from data_storage/ |
| Parameters | None required | None |
| Human Feedback | No | Yes (3 checkpoints) |
| Execution Time | 2-5 minutes | 10-30 minutes |
| Skills Used | 7+ auto-selected | Complete workflow (no skills) |
| Output Format | HTML report | Multi-format (HTML/PDF/MD/DOCX) |
| Code Generation | No | Yes (complete pipeline) |
| Analysis Stages | Integrated execution | 6 separate stages |
| Interactive | No | Yes (at checkpoints) |
| Report Detail | Comprehensive | Extensive + technical |
| Best For | Quick insights | Thorough analysis |
| Customization | Automatic | Interactive |
12 domain-specific skills for expert-level analysis:
Customer Analysis:
rfm-customer-segmentation - Customer value segmentationltv-predictor - Lifetime value predictionretention-analysis - Customer retention and churnuser-profiling-analysis - User behavior profilingMarketing Analysis:
attribution-analysis-modeling - Marketing attributiongrowth-model-analyzer - Growth hacking analysisab-testing-analyzer - A/B test validationfunnel-analysis - Conversion funnelsData Analysis:
data-exploration-visualization - Automated EDAregression-analysis-modeling - Predictive modelingcontent-analysis - Text and NLP analysisrecommender-system - Recommendation engines/do-more - ⭐ RECOMMENDED Automatic multi-skill analysis (no parameters)/do-all - Complete interactive workflow with human feedback (no parameters)/analyze [dataset] [type] - Perform data analysis/visualize [dataset] [type] - Create visualizations/generate [language] [type] - Generate analysis code/report [dataset] [format] - Generate reports/quality [dataset] [action] - Quality assurance/hypothesis [dataset] [domain] - Generate hypotheses# Easiest way - no parameters needed!
/do-more
# Output (2-5 minutes):
# do_more_analysis/integrated_results/
# └── Comprehensive_Analysis_Report.html
# For thorough analysis with human feedback checkpoints
/do-all
# Includes:
# ✓ Data Quality Assessment → [your confirmation]
# ✓ Exploratory Analysis
# ✓ Hypothesis Generation → [your approval]
# ✓ Visualizations → [your review]
# ✓ Code Generation
# ✓ Comprehensive Report
# Quick automated analysis
/do-more
# Or specific customer analysis
/rfm-customer-segmentation olist_orders.csv
/ltv-predictor order_items.csv
/retention-analysis orders.csv customers.csv
# Complete analysis workflow
/analyze user_behavior.csv exploratory
/visualize user_behavior.csv trends
/quality user_behavior.csv clean
/report user_behavior.csv complete html
/generate python user-segmentation
# Sales performance analysis
/analyze sales_data.csv statistical
/visualize sales_data.csv trends
/generate sql revenue-analysis
/report sales_data.csv executive pdf
# Customer segmentation
/analyze customer_data.csv predictive
/visualize customer_data.csv distribution
/generate r clustering-analysis
/hypothesis customer_data churn-prediction
claude-data-analysis/
├── .claude/
│ ├── agents/ # Sub-agent configurations
│ ├── commands/ # Slash command definitions
│ │ ├── do-more.md # ⭐ NEW! Automatic multi-skill analysis
│ ├── hooks/ # Automation scripts
│ ├── settings.json # Claude Code settings
│ └── skills/ # ⭐ 12 Specialized analysis skills
│ ├── rfm-customer-segmentation/
│ ├── ltv-predictor/
│ ├── retention-analysis/
│ ├── funnel-analysis/
│ ├── growth-model-analyzer/
│ ├── content-analysis/
│ └── ... (9 more skills)
├── data_storage/ # Your data files
│ ├── Orders.csv
│ ├── Customers.csv
│ └── ... (Olist datasets included)
├── do_more_analysis/ # ⭐ NEW! /do-more output directory
│ ├── skill_execution/ # Individual skill results
│ │ ├── data-exploration-visualization/
│ │ ├── rfm-customer-segmentation/
│ │ ├── ltv-predictor/
│ │ ├── retention-analysis/
│ │ ├── funnel-analysis/
│ │ ├── growth-model-analyzer/
│ │ └── content-analysis/
│ └── integrated_results/
│ └── Comprehensive_Analysis_Report.html # ⭐ Interactive report
├── analysis_reports/ # Generated analysis reports
├── visualizations/ # Generated charts
├── generated_code/ # Analysis code
└── examples/ # Example datasets
The project includes Olist Brazilian E-commerce datasets in data_storage/:
Sample Workflow:
# 1. Data already in data_storage/
# 2. Run automatic analysis
/do-more
# 3. View results
# Open: do_more_analysis/integrated_results/Comprehensive_Analysis_Report.html
The project uses Claude Code's configuration system. Key settings:
data_storage/