Agent skill
dexcom
Monitor blood glucose via Dexcom G7/G6 CGM
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/dexcom
Metadata
Additional technical details for this skill
- clawdbot
-
{ "emoji": "\ud83e\ude78", "install": [ { "id": "uv-brew", "bins": [ "uv" ], "kind": "brew", "label": "Install uv (brew)", "formula": "uv" } ], "requires": { "env": [ "DEXCOM_USER", "DEXCOM_PASSWORD" ], "bins": [ "uv" ] }, "primaryEnv": "DEXCOM_USER" }
SKILL.md
Dexcom CGM
Real-time blood glucose monitoring via Dexcom G6/G7 continuous glucose monitor.
Setup
Set environment variables:
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:
{
skills: {
"dexcom": {
env: {
DEXCOM_USER: "[email protected]",
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?