huifer/wellally-health
Ally-Health is an intelligent healthcare assistant that combines Claude AI technology with medical expertise. Through natural language interaction, it helps users record symptoms, manage medications, track medical records, and access professional multidisciplinary consultation analysis—making health management smarter and more accessible
npx skills add huifer/wellally-healthREADME
Claude-Ally-Health - Personal Health Information System
A file-based personal health data management system using Claude Code CLI tools for data management.
GitHub: https://github.com/huifer/Claude-Ally-Health
⚠️ Disclaimer: This project is NOT affiliated with, endorsed by, or associated with Anthropic or Claude.ai. This is an independent open-source project developed by WellAlly Tech.
📝 Note: This project uses GLM's
mcp__4_5v_mcp__analyze_imagefor image recognition.
Project Developer
This project is developed and maintained by WellAlly Tech.
System Features
- 📁 Pure file-based storage, no database required
- 🖼️ Intelligent medical report image recognition
- 📊 Automatic biochemical test data and reference range extraction
- 🔍 Structured medical imaging data extraction
- 🔪 Surgical history and implant management
- 📋 Structured discharge summary storage
- 👨⚕️ Multi-Disciplinary Team (MDT) consultation system
- 🔬 13 medical specialist intelligent analysis
- ☢️ Medical radiation dose tracking and management
- 💊 Intelligent drug interaction detection (New)
- 🚨 Five-level severity warning system (A/B/C/D/X)
- 👤 User basic profile management
- 💾 Local storage, completely private data
- 🚀 Claude Code command operations, no programming required
Directory Structure
my-his/
├── .claude/
│ ├── commands/
│ │ ├── save-report.md # Save medical report command
│ │ ├── query.md # Query records command
│ │ ├── profile.md # User profile settings command
│ │ ├── radiation.md # Radiation exposure management command
│ │ ├── surgery.md # Surgery history record command
│ │ ├── discharge.md # Discharge summary management command
│ │ ├── medication.md # Medication record management command
│ │ ├── interaction.md # Drug interaction detection command
│ │ ├── consult.md # Multi-disciplinary consultation command
│ │ └── specialist.md # Single specialist consultation command
│ └── specialists/
│ ├── cardiology.md # Cardiology specialist Skill
│ ├── endocrinology.md # Endocrinology specialist Skill
│ ├── gastroenterology.md # Gastroenterology specialist Skill
│ ├── nephrology.md # Nephrology specialist Skill
│ ├── hematology.md # Hematology specialist Skill
│ ├── respiratory.md # Respiratory medicine specialist Skill
│ ├── neurology.md # Neurology specialist Skill
│ ├── oncology.md # Oncology specialist Skill
│ ├── general.md # General practice specialist Skill
│ └── consultation-coordinator.md # Consultation coordinator
├── data/
│ ├── profile.json # User basic profile
│ ├── radiation-records.json # Radiation exposure records
│ ├── allergies.json # Allergy history records
│ ├── interactions/ # Drug interaction database
│ │ ├── interaction-db.json # Interaction rules main database
│ │ └── interaction-logs/ # Check history records
│ ├── medications/ # Medication record data
│ ├── 生化检查/ # Biochemical test data
│ │ └── YYYY-MM/
│ │ └── YYYY-MM-DD_test_name.json
│ ├── 影像检查/ # Medical imaging data
│ │ └── YYYY-MM/
│ │ ├── YYYY-MM-DD_test_name_body_part.json
│ │ └── images/ # Original image backup
│ ├── 手术记录/ # Surgery history data
│ │ └── YYYY-MM/
│ │ └── YYYY-MM-DD_surgery_name.json
│ ├── 出院小结/ # Discharge summary data
│ │ └── YYYY-MM/
│ │ └── YYYY-MM-DD_main_diagnosis.json
│ └── index.json # Global index file
└── README.md
Quick Navigation
- 📖 Complete User Guide (Chinese) | docs/user-guide.en.md (English) - Detailed command usage instructions and examples
- 📋 Data Structure Specification (Chinese) | docs/data-structures.en.md (English) - JSON data format and field descriptions
- 🔧 [Technical
...