Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

apple-health-analysisApple health analysis 搜索

Agent Skill

apple-health-analysis 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

245

周安装

10

GitHub Stars

2

下载量

79
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:apple-health-analysis(Apple health analysis 搜索)
来源仓库:https://github.com/labrinyang/apple-health-analysis
仓库路径:skills/apple-health-analysis
安装命令:
npx skills add https://github.com/labrinyang/apple-health-analysis --skill apple-health-analysis
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/labrinyang/apple-health-analysis --skill apple-health-analysis

简介

用于查找、检索和筛选 Apple Health 相关健康数据分析信息。

  • 适用于 Codex、Claude、Cursor、Gemini CLI,支持基于关键词的任务场景匹配。
  • 通过 npx skills add 命令安装,需结合来源仓库 README 确认具体使用方法。
  • 安装前建议核实是否会触发联网或数据处理操作,避免隐私泄露风险。
  • apple-health-analysis 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Apple Health Deep Analysis — Clinical-Grade Report Engine

This skill produces a comprehensive health assessment report at the standard of a top-tier academic medical center. It applies 20+ peer-reviewed statistical methods to Apple Health export data, contextualizes every finding against evidence-based clinical reference ranges, grades the confidence of each conclusion, and handles missing or insufficient data transparently.

Medical Disclaimer: This analysis is for informational and educational purposes only. It does not constitute medical advice, diagnosis, or treatment. Consult a qualified healthcare provider for medical decisions.

Workflow

Step 1: Locate the Export

Find the Apple Health XML file inside apple_health_export/. Common names: 导出.xml, export.xml, Export.xml.

find . -path "*/apple_health_export/*.xml" -size +1M | head -5

Step 2: Run Both Analysis Engines

# Base analysis — comprehensive health metrics
python3 <skill-path>/scripts/analyze_health.py <xml-path> --output json 2>/dev/null > /tmp/health_base.json

# Advanced analysis — 20 peer-reviewed statistical methods
python3 <skill-path>/scripts/advanced_analytics.py <xml-path> 2>/dev/null > /tmp/health_advanced.json

Both scripts: streaming XML parsing (handles 1GB+), Python 3.6+ only, no external deps. If >500MB, warn about 2-3 min runtime.

Step 3: Generate HTML Report Shell

Generate the visual HTML report with charts, gauges, and data tables:

python3 <skill-path>/scripts/generate_report_html.py /tmp/health_base.json /tmp/health_advanced.json -o /tmp/health_report.html --lang zh

This produces a self-contained HTML (~160KB) with all visualizations but EMPTY narrative sections. The narrative sections are <div class="ai-narrative" id="narrative-XXX"> elements waiting for your analysis.

Step 4: Assess Data Quality & Read Clinical Reference

Before interpreting ANY results, read the data_quality section from the base analysis output. This tells you which analyses are reliable and which should be presented with caveats or skipped entirely.

Data sufficiency rules:

  • If a metric has reliability: "insufficient"do not present that section. Mention it in the Data Availability section as "not enough data."
  • If reliability: "low" → present with a prominent caveat: "Limited data (X days of Y); interpret with caution."
  • If reliability: "moderate" → present normally with a brief note on coverage.
  • If reliability: "high" → present with full confidence.

From the advanced analysis, check data_requirements — it explicitly states which methods had enough data to run and which were skipped.

Read references/clinical_interpretation.md for evidence-based reference ranges and interpretation guidelines. This file contains paper-cited norms for every metric including advanced nonlinear dynamics and glucose risk indices. Every number in the report should be contextualized against these ranges.

Step 5: Fill Narrative Sections

Read both JSON outputs. For each section in the HTML, use the Edit tool to insert your clinical interpretation directly into the corresponding <div class="ai-narrative"> element.

The narrative IDs and what to write:

IDContent to Write
narrative-executive-summary3-5 bullet points of most critical findings with evidence grades
narrative-body-compositionWeight trajectory interpretation, BMI context, gain decomposition analysis, projection implications
narrative-cardiovascularRHR assessment vs age norms, HR zone analysis, VO2 Max percentile, recovery assessment
narrative-autonomicHRV interpretation, Poincaré balance, DFA alpha meaning, nocturnal HR trend
narrative-glucoseCGM interpretation, TIR context, variability assessment, Kovatchev risk, meal pattern insights
narrative-activityStep trend assessment, exercise consistency, weekly pattern insights
narrative-sleepDuration adequacy, architecture quality, efficiency assessment
narrative-circadianCosinor interpretation, rhythm stability assessment
narrative-causal-inferenceExplain which causal relationships are confirmed and what they mean practically
narrative-nonlinearComplexity assessment, fractal dynamics, what it means for adaptability
narrative-biological-ageFitness age context, biological age drivers, allostatic load interpretation
narrative-disease-screeningSummarize elevated risks, explain what screenings mean, suggest follow-up
narrative-correlationsHighlight top 3 correlations with physiological explanations
narrative-recommendationsNumbered, prioritized, specific, data-grounded action items

Each narrative should:

  • Be written as HTML (use <p>, <ul>, <li>, <strong>, <h4> tags)
  • Reference specific numbers from the data
  • Cite clinical reference ranges from references/clinical_interpretation.md
  • Include evidence grades where applicable
  • Be in the user's language
  • Be direct and clinically informative, not generic

Example Edit for body composition:

old_string: <div class="ai-narrative" id="narrative-body-composition"></div>
new_string: <div class="ai-narrative" id="narrative-body-composition"><h4>Clinical Assessment</h4><p>Your current weight of <strong>105.0 kg</strong> (BMI 30.5) places you in <strong>Obese Class I</strong>...</p></div>

Step 6: Open Final Report

After all narrative sections are filled:

open /tmp/health_report.html  # macOS

Key Principles

Never Simplify the Analysis

Present the full statistical results. Do not round away precision, omit p-values, or skip advanced metrics to "keep it simple." If a method was computed, present it. Users who export their Apple Health data and ask for analysis want depth, not dumbed-down summaries. Let the report structure (executive summary first, deep dives later) handle the complexity gradient — not omission.

Handle Missing Data Explicitly

Every health data export is different. Some users have CGM data; most don't. Some have years of Apple Watch data; others have weeks. The report must adapt gracefully:

  • Present only what exists. Never fabricate or guess at missing data.
  • State what's missing. In the Data Availability section, list which data types are present and which are absent, so the user knows what they're NOT seeing.
  • Explain impact. If CGM data is absent, note that glucose analysis, MAGE/MODD/LBGI/HBGI, and glucose-exercise correlations cannot be performed. If VO2 Max is missing, note that fitness age cannot be estimated.
  • Adjust composite scores. Only score dimensions that have data. If only 4 of 8 dimensions have data, the overall score is the mean of those 4 — don't penalize for missing data.

Evidence Grading

Every major finding should carry a confidence indicator:

GradeMeaningWhen to use
A — StrongMultiple converging metrics, high data quality, statistically significantp<0.01, >100 data points, confirmed by multiple methods
B — ModerateSingle strong metric or multiple weak ones, adequate datap<0.05, 30-100 data points
C — SuggestiveTrend visible but not statistically significant, limited datap<0.10, 10-30 data points
D — InsufficientToo little data to draw conclusions<10 data points, >50% missing

Example: "Your resting heart rate has been rising over the past 3 months (Mann-Kendall tau=0.24, p=0.03; Evidence: B)"

Report Language — MUST Match User Language

The entire report — including the HTML visual report AND the conversational narrative — must be in the user's language. Detection priority:

  1. The language of the user's message (highest priority)
  2. The XML locale attribute (e.g., zh-Hans_US → Chinese)
  3. Data source names (Chinese app names → Chinese)

When generating the HTML report, pass the --lang flag:

python3 <skill-path>/scripts/generate_report_html.py base.json adv.json -o report.html --lang zh  # Chinese
python3 <skill-path>/scripts/generate_report_html.py base.json adv.json -o report.html --lang en  # English

For Chinese: use standard medical terminology (静息心率, 心率变异性, 血糖时间达标率, 最大摄氧量, 自主神经功能, 生物年龄, etc.). For the conversational analysis, write entirely in the detected language — do not mix languages unless quoting metric names that have no standard translation.

What the Scripts Output

Base Analysis (analyze_health.py)

Outputs JSON with keys: personal_info, data_quality, data_overview, circadian_rhythm, heart_rate, heart_rate_variability, glucose, sleep, activity, body_composition, workouts, respiratory, correlations, lagged_correlations, change_points, composite_scores, trend_momentum, audio_exposure, risk_stratification.

Advanced Analysis (advanced_analytics.py)

Outputs JSON with keys: methods_applied, references (20+ papers), data_requirements, trend_tests, causal_inference, nonlinear_dynamics, advanced_glucose, circadian_quantification, statistical_rigor, bayesian_changepoints, biological_age_models, disease_risk_screening.

The disease_risk_screening section screens for up to 30 diseases across 8 categories (endocrine, cardiovascular, respiratory, neurological, musculoskeletal, sleep disorders, psychiatric, other) with paper-cited thresholds. Each screening returns {condition, risk_level, score, max_score, risk_pct, factors, recommendation, references}. Read references/wearable_screening_literature.md for the full 1200-line evidence base behind each screening algorithm.

Each section is null when data is insufficient — never crashes or produces garbage output.

Reference Files

FileLinesPurposeWhen to Read
references/clinical_interpretation.md480Evidence-based reference ranges for ALL metrics, paper-citedStep 4: before writing narratives
references/report_template.md221Report structure, formatting rules, tone guideStep 5: while writing narratives
references/wearable_screening_literature.md123328 disease screening algorithms with paper citationsStep 5: when writing disease screening narrative

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.39%
按下载量换算26

Claude

32.02%
按下载量换算25

Cursor

17.68%
按下载量换算14

Gemini CLI

9.17%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/labrinyang/apple-health-analysis --skill apple-health-analysis 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills