Claude
Skills
Sign in
โ† Back

dexcom

Included with Lifetime
$97 forever

Monitor blood glucose via Dexcom G7/G6 CGM

Generalscripts

What this skill does


# Dexcom CGM

Real-time blood glucose monitoring via Dexcom G6/G7 continuous glucose monitor.

## Setup

Set environment variables:
```bash
export DEXCOM_USER="[email protected]"
export DEXCOM_PASSWORD="your-password"
export DEXCOM_REGION="ous"  # or "us" (optional, defaults to "ous")
```

Or configure in `~/.clawdbot/clawdbot.json`:
```json5
{
  skills: {
    "dexcom": {
      env: {
        DEXCOM_USER: "[email protected]",
        DEXCOM_PASSWORD: "your-password",
        DEXCOM_REGION: "ous"
      }
    }
  }
}
```

## Usage

**Formatted report:**
```bash
uv run {baseDir}/scripts/glucose.py now
```

**Raw JSON:**
```bash
uv run {baseDir}/scripts/glucose.py json
```

## Example Output

```
๐Ÿฉธ Glucose: 100 mg/dL (5.6 mmol/L)
๐Ÿ“ˆ Trend: steady โžก๏ธ
๐ŸŽฏ Status: ๐ŸŸข In range
โฐ 2026-01-18 09:30:00
```

## Requirements

- Dexcom G6 or G7 with Share enabled
- uv (Python package manager)
- Valid Dexcom Share credentials

Related in General