dexcom

Verified·Scanned 2/17/2026

Provides Dexcom G6/G7 glucose monitoring via scripts/glucose.py, invoked with uv run {baseDir}/scripts/glucose.py now. It requires DEXCOM_USER and DEXCOM_PASSWORD, reads those env vars, and calls pydexcom.Dexcom(...).get_current_glucose_reading() which contacts Dexcom services.

from clawhub.ai·v8fa2c91·3.0 KB·0 installs
Scanned from 1.0.4 at 8fa2c91 · Transparency log ↗
$ vett add clawhub.ai/chris-clem/dexcom

Dexcom CGM

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

Setup

Set environment variables:

export DEXCOM_USER="your@email.com"
export DEXCOM_PASSWORD="your-password"
export DEXCOM_REGION="ous"  # or "us" (optional, defaults to "ous")

Or configure in ~/.clawdbot/clawdbot.json:

{
  skills: {
    "dexcom": {
      env: {
        DEXCOM_USER: "your@email.com",
        DEXCOM_PASSWORD: "your-password",
        DEXCOM_REGION: "ous"
      }
    }
  }
}

Usage

Formatted report:

uv run {baseDir}/scripts/glucose.py now

Raw JSON:

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