# Dexcom

> Monitor blood glucose via Dexcom G7/G6 CGM

- Skill: `majiayu000/dexcom` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/dexcom`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/dexcom/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/dexcom

---


# Dexcom CGM

Real-time blood glucose monitoring via Dexcom G6/G7 continuous glucose monitor.

## Setup

Set environment variables:
```bash
export DEXCOM_USER="your@email.com"
export DEXCOM_PASSWORD="your-password"
export DEXCOM_REGION="ous"  # or "us" (optional, defaults to "ous")
```

Or configure in `~/.thinkfleet/thinkfleet.json`:
```json5
{
  skills: {
    "dexcom": {
      env: {
        DEXCOM_USER: "your@email.com",
        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

