Stats
Links
Categories
Evidence-based Apple Health data analysis plugin for Claude Code
npx claudepluginhub lokiq0713/apple-health-analysisEvidence-based Apple Health data analysis with ETL pipeline, tier-based indicators, and research-backed risk positioning
A Claude Code plugin for evidence-based Apple Health data analysis. Transforms raw Apple Health export.xml into structured CSV data, then applies tier-based analysis with research-backed risk positioning.
/plugin marketplace add github:loki/apple-health-analysis
/plugin install apple-health-analysis@apple-health-plugins
/plugin install --plugin-dir /path/to/apple-health-analysis
export.xml in an accessible path/apple-health-analysis skill:/apple-health-analysis
Or ask Claude directly:
Analyze my Apple Health export at /path/to/export.xml
| Phase | Description | Output |
|---|---|---|
| 0: ETL | Single-pass XML → CSV extraction | ~35 CSV files |
| 1: Derived | Aggregated metrics computation | 11 derived datasets |
| 2: Analysis | Parallel tier-based analysis | Per-indicator reports |
| 3: Synthesis | Cross-indicator report | Final health report |
| Tier | Indicators | Analysis Depth |
|---|---|---|
| Tier 1 | Steps, Resting HR, VO2max, Sleep, Weight/BMI | Full A/B/C/D |
| Tier 2 | HRV, SpO2, ECG, Walking Steadiness | A/B/C + qualitative D |
| Tier 3 | Energy, Respiratory Rate, Gait, Workouts, Noise | B/C only |
apple-health-analysis/
├── .claude-plugin/
│ ├── plugin.json
│ └── marketplace.json
├── skills/
│ └── health-analysis/
│ ├── SKILL.md
│ ├── scripts/
│ │ ├── parse_health_v2.py
│ │ └── build_derived_v2.py
│ └── references/
│ ├── research-citations.md
│ ├── measurement-accuracy.md
│ └── analysis-framework.md
├── agents/
│ ├── tier-1-analysis.md
│ ├── tier-2-analysis.md
│ ├── tier-3-analysis.md
│ ├── data-quality.md
│ └── correlations.md
├── LICENSE
└── CHANGELOG.md
numpy and pandas (for derived metrics)MIT