ghealth-shared
Shared prerequisites for all ghealth skills — auth, setup, global flags, command structure
Query Google Health API v4 — steps, heart rate, exercise, sleep, weight, SpO2, HRV, ECG, blood glucose, nutrition, and 40 total data types
$ npx -y skills add Google-Health-API/google-health-cli --skill ghealth --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ghealthContext preview
The summary Claude sees to decide when to auto-load this skill.
Query Google Health API v4 — steps, heart rate, exercise, sleep, weight, SpO2, HRV, ECG, blood glucose, nutrition, and 40 total data types
name: ghealth description: Query Google Health API v4 — steps, heart rate, exercise, sleep, weight, SpO2, HRV, ECG, blood glucose, nutrition, and 40 total data types
CLI for the Google Health API v4. 40 verified data types.
**Prerequisites:** See `../ghealth-shared/SKILL.md` for auth, setup, global flags.
| Goal | Operation | Example | |------|-----------|---------| | Daily totals (steps, distance, calories) | `daily-rollup` | `ghealth data steps daily-rollup --from 2026-03-22 --to 2026-03-29` | | Individual readings (HR, weight, SpO2) | `list` | `ghealth data heart-rate list --from today --limit 20` | | Sessions (exercise, sleep) | `list` | `ghealth data exercise list --from 2026-03-01` | | Daily summaries (resting HR, HRV, resp rate) | `list` | `ghealth data daily-resting-heart-rate list --from 2026-03-01` | | Merged multi-source data | `reconcile` | `ghealth data weight reconcile --from 2026-01-01` |
**Why this matters:** `steps list` returns minute-level intervals *without counts*. Use `daily-rollup` to get actual step totals (`countSum`). Same for `distance` (`millimetersSum`) and `floors`.
Run `ghealth schema types` for the live version. Quick reference:
**Use daily-rollup for totals:**
**Use list for readings:** `heart-rate`, `weight` (writable), `body-fat` (writable), `height` (writable), `oxygen-saturation`, `heart-rate-variability`, `altitude`, `vo2-max`, `active-zone-minutes`, `activity-level`, `basal-energy-burned`, `active-energy-burned`, `blood-glucose`, `core-body-temperature`, `respiratory-rate-sleep-summary`, `run-vo2-max`, `sedentary-period`, `swim-lengths-data`, `hydration-log`
**Use list for sessions:**
**Cardiac (dedicated scopes, list-only):**
**Nutrition:**
**Daily summaries** (one value per day, filter by date): `daily-resting-heart-rate`, `daily-heart-rate-variability`, `daily-oxygen-saturation`, `daily-respiratory-rate`, `daily-vo2-max`, `daily-sleep-temperature-derivations`
**Get a single point by ID:** `get --id <id>` is supported on `exercise`, `sleep`, `weight`, `body-fat`, `height`, `hydration-log`, `nutrition-log`, `blood-glucose`, `core-body-temperature`, `food`, `food-measurement-unit`.
These require judgment that `--help` and `schema` don't provide.
**Get the user's timezone before querying date-sensitive data:**
ghealth user settings get # → timeZone: "Europe/London", utcOffset: "3600s" # Then use --from/--to with the correct local dates
This reports the account timezone for information only — to have the CLI resolve dates in that zone, set it explicitly with `ghealth config set timezone <IANA zone>`.
**Sleep/exercise page size is capped at 25 per request** (auto-paginated by CLI):
ghealth data sleep list --limit 5 # CLI handles pagination internally
**Paging through large `list` results.** `list` returns up to `--limit` rows (default 500). When more exist, the response carries a `nextPageToken` and a hint. Pass it back with `--page-token` to fetch the next page — it resumes exactly where the last page ended, no rows skipped or repeated:
ghealth data heart-rate list --from 2026-06-15 --limit 500
# → {"dataPoints":[…500…], "nextPageToken":"ABC", "_hints":[…]}
ghealth data heart-rate list --from 2026-06-15 --limit 500 --page-token ABC
# → next 500 rows**Correlate heart rate with exercise sessions:**
# 1. Get exercise time window ghealth data exercise list --from today --limit 1 # → start: "2026-03-29T14:18:32+01:00", end: "2026-03-29T14:39:14+01:00" # 2. Query HR for that window using --filter (raw API syntax, UTC required) ghealth data heart-rate list --filter 'heart_rate.sample_time.physical_time >= "2026-03-29T13:18:32Z" AND heart_rate.sample_time.physical_time < "2026-03-29T13:40:00Z"'
**Use `-o <file>` to write data to a file.** When `-o` is set, stdout shows only a summary with the column schema — not the data itself. This means you can fetch data and immediately write analysis code using the column names from stdout, without reading the file.
ghealth data steps daily-rollup --from 2026-03-24 --to 2026-03-30 --format csv -o steps.csv
**What stdout shows** (this is all the agent sees):
Wrote 6 rows to steps.csv Columns: countSum, date Preview: countSum,date 4062,2026-03-29 9122,2026-03-28 2469,2026-03-27
**What the file contains** (full CSV, not printed to stdout):
countSum,date 4062,2026-03-29 9122,2026-03-28 2469,2026-03-27 6541,2026-03-26 4025,2026-03-25 3995,2026-03-24
The agent now knows the columns are `countSum` and `date`, and can write `pd.read_csv("steps.csv")` without ever reading the file.
**Do not pipe to file** — use `-o` instead. Piping (`> file.csv`) sends the full data to the file but prints nothing to stdout, so the agent has no column schema and must read the file to learn the structure.
More examples:
# Sleep — nested stageMinutes auto-flattened to stageMinutes.AWAKE, sta
CLI for the Google Health API v4 — built for AI agents and developers. 40 verified data types: steps, heart rate, exercise, sleep, weight, SpO2, HRV, ECG, blood glucose, nutrition, and more Agent-first: simplified JSON output, deterministic exit codes,
Shared prerequisites for all ghealth skills — auth, setup, global flags, command structure