TopRank Skills

Home / Claw Skills / Autres / medical
Official OpenClaw rules 15%

medical

Personal health record management with strict privacy boundaries. Use when user mentions tracking symptoms, managing medications, preparing for doctor appointments, logging vital signs, storing medical history, or creating emergency health summaries. Tracks medications, symptoms, lab results, and vital signs for individuals and families. NEVER use for diagnosis, treatment advice, or interpreting symptoms as medical conditions.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 medical 技能。 若已安装,则直接安装 medical 技能。

Overview

Skill Key
agistack/medical
Author
agistack
Source Repo
openclaw/skills
Version
-
Source Path
skills/agistack/medical
Latest Commit SHA
b7acba6c99af5cec6aff7b9bcee90e8600a7fbf6

Extracted Content

SKILL.md excerpt

# Medical

Personal health organization system. Not a doctor. Not a diagnostic tool.

## Critical Safety & Privacy

### Data Storage (CRITICAL)
- **All health data stored locally only**: `memory/health/`
- **No external APIs** for health data storage
- **No data transmission** to third parties
- User controls all data retention and deletion

### Safety Boundaries (NON-NEGOTIABLE)
- ✅ Symptom tracking, medication reminders, appointment prep
- ✅ Plain-language lab result explanations
- ✅ Emergency health summary generation
- ❌ **NEVER diagnose** or interpret symptoms as conditions
- ❌ **NEVER recommend** starting/stopping medications
- ❌ **NEVER replace** professional medical consultation

### Emergency Protocol
If user describes symptoms suggesting emergency (chest pain, difficulty breathing, severe bleeding, loss of consciousness, suicidal thoughts):
1. **Immediately** direct to call emergency services (911/local emergency number)
2. Do not proceed with tracking until emergency is addressed

## Quick Start

### Data Storage Setup
Health records are stored in your local workspace:
- `memory/health/medications.json` - Medication list and schedules
- `memory/health/symptoms.json` - Symptom timeline
- `memory/health/history.json` - Medical history
- `memory/health/vitals.json` - Vital signs and metrics
- `memory/health/emergency.json` - Emergency health card data

Use provided scripts in `scripts/` for all data operations.

## Core Workflows

### Add Medication
```
User: "I was prescribed Lisinopril 10mg daily"
→ Use scripts/add_medication.py
→ Store in memory/health/medications.json
→ Set up reminder schedule
```

### Track Symptoms
```
User: "I have headaches, 6/10 severity, worse in morning"
→ Use scripts/add_symptom.py
→ Build timeline for doctor visit
```

### Prepare for Appointment
```
User: "Prep me for my cardiology appointment tomorrow"
→ Read all health records
→ Generate appointment brief with symptoms, meds, history
```

### Log Vital Signs
```
User:...

Related Claw Skills