Monitor blood glucose via Dexcom G7/G6 CGM
Scanned 9/5/2026
Install to Claude Code
npx -y skills add dvcrn/openclaw-skills-marketplace --skill dexcom --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Dexcom?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/dvcrn-dexcom)More formats (shields.io, HTML) on the badges page.
---
name: dexcom
description: "Monitor blood glucose via Dexcom G7/G6 CGM"
homepage: https://www.dexcom.com
---
# 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 `~/.clawdbot/clawdbot.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
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Java Spring Boot 服务中关于身份验证/授权、验证、CSRF、密钥、标头、速率限制和依赖安全的 Spring Security 最佳实践。