원클릭으로
health-plus
Advanced Apple Health metrics: blood pressure, glucose, oxygen, body temperature, macronutrients, workouts
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Advanced Apple Health metrics: blood pressure, glucose, oxygen, body temperature, macronutrients, workouts
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Systematic research methodology with source evaluation and synthesis
Advanced file operations: copy, move, directory management, rich stat
Author and edit Palvia skills directly via the fs.* bridge. Includes scaffolding, tool/script generators, validation, and reference examples.
| name | Health Plus |
| description | Advanced Apple Health metrics: blood pressure, glucose, oxygen, body temperature, macronutrients, workouts |
| palvia | {"version":"1.0","tags":["health","fitness","wellness"]} |
Install this skill when you need to read or log Apple Health metrics beyond the default set (steps, heart rate, sleep, body mass, dietary energy, dietary water).
skill_health_plus_read_blood_pressure(start_date?, end_date?) — systolic/diastolic samples (defaults to last 30 days).skill_health_plus_read_blood_glucose(start_date?, end_date?) — glucose samples (defaults to last 30 days).skill_health_plus_read_blood_oxygen(start_date?, end_date?) — SpO₂ samples (defaults to last 7 days).skill_health_plus_read_body_temperature(start_date?, end_date?, unit?) — temperature samples. unit is "c" (default) or "f".skill_health_plus_write_blood_pressure(systolic, diastolic, date?) — mmHg.skill_health_plus_write_blood_glucose(value, unit?, date?) — unit is "mmol/l" (default) or "mg/dl".skill_health_plus_write_blood_oxygen(percentage, date?) — SpO₂ percent (e.g. 98).skill_health_plus_write_body_temperature(value, unit?, date?) — unit is "c" (default) or "f".skill_health_plus_write_body_fat(percentage, date?) — body fat percent (e.g. 22.5).skill_health_plus_write_height(value, unit?, date?) — unit is "cm", "m", "in", or "ft".skill_health_plus_write_heart_rate(bpm, date?) — manual pulse in beats per minute.skill_health_plus_write_dietary_carbohydrates(grams, date?)skill_health_plus_write_dietary_protein(grams, date?)skill_health_plus_write_dietary_fat(grams, date?)skill_health_plus_write_workout(activity_type?, start_date, end_date, energy_kcal?, distance_km?) — activity_type e.g. "running", "walking", "cycling", "swimming", "yoga", "strength".date/start_date/end_date params accept ISO 8601 or yyyy-MM-dd HH:mm.date to now; read ranges default as noted above.health permission category: reads require read permission; writes require write permission.For loops, conditional logic, or combining multiple metrics in one pass, use
execute_javascript with the apple.health.* namespace directly, e.g.:
await apple.health.writeBloodPressure({systolic: 120, diastolic: 80});
let readings = await apple.health.readBloodGlucose({});