WellAlly Health is a local-first, AI-powered personal health record (PHR) system.
$ npx -y skills add huifer/WellAlly-health --agent claude-code
Run the curl in your terminal, the rest in Claude Code.
What's inside
WellAlly Health is a local-first, AI-powered personal health record (PHR) system. It turns your medical reports, prescriptions, imaging, and daily health tracking into a private, searchable, structured knowledge base that runs entirely on your own machine — no cloud, no database server, no account required.
⚠️ Disclaimer: This project is NOT affiliated with, endorsed by, or associated with Anthropic or Claude.ai. It is an independent open-source project developed by WellAlly Tech. WellAlly Health is built on top of Claude Code's command-line tooling and uses AI image recognition (e.g. GLM
mcp__4_5v_mcp__analyze_image) for document understanding.This is not a medical device. All analysis is for personal reference only and must never replace professional medical advice.
Your health data is scattered across hospital portals, paper printouts, photos, and memory. Commercial apps ask you to upload it to their cloud. WellAlly Health takes the opposite approach:
WellAlly Health is the personal health record (PHR) / personal health information system (PHIS) for people who want AI assistance without surrendering their medical privacy.
Local-first & private
Intelligent medical document understanding
Clinical safety intelligence
Multi-disciplinary expertise
Whole-lifecycle coverage
Prerequisite: Claude Code installed and opened in this project directory.
# 1. First-time setup — set height(cm) weight(kg) birthdate
/profile set 175 70 1990-01-01
# 2. Save your first lab report from an image
/save-report /path/to/image.jpg
# 3. Record a radiation scan
/radiation add CT chest
# 4. Record a past surgery in plain language
/surgery Gallbladder removal surgery in August last year due to gallstones
# 5. Save a discharge summary from a photo
/discharge @医疗报告/出院小结.jpg
# 6. Query everything
/query all
# 7. Start a multi-disciplinary consultation
/consult
That's it — no programming, no server, no sign-up.
my-his/
├── .claude/
│ ├── commands/ # 60+ slash commands (see Command Reference)
│ │ ├── save-report.md
│ │ ├── query.md
│ │ ├── profile.md
│ │ ├── radiation.md
│ │ ├── surgery.md
│ │ ├── discharge.md
│ │ ├── medication.md
│ │ ├── interaction.md
│ │ ├── consult.md
│ │ └── specialist.md
│ └── specialists/ # 16 specialty + MDT coordinator Skills
├── data/
│ ├── profile.json # User basic profile
│ ├── radiation-records.json
│ ├── allergies.json
│ ├── interactions/ # Drug interaction database + logs
│ │ ├── interaction-db.json
│ │ └── interaction-logs/
│ ├── medications/
│ ├── 生化检查/ # Biochemical test data (YYYY-MM/...)
│ ├── 影像检查/ # Medical imaging data + image backups
│ ├── 手术记录/ # Surgery history
│ ├── 出院小结/ # Discharge summaries
│ └── index.json # Global index
└── README.md
WellAlly Health ships 62 slash commands. Highlights by domain:
Core data management
/profile · /get-profile · /query · /save-report · /report · /report-instructions · /prepare · /ai · /consult · /specialist · /allergy · /medication · /interaction · /surgery · /discharge · /radiation · /radiation-data · /symptom · /screening · /polypharmacy
Specialty analysis
/sleep · /nutrition · /diet · /fitness · /mental-health · /mood · /psych-assess · /cognitive · /tcm-constitution · /skin-health · /oral-health · /eye-health · /ent · /sexual-health · /occupational-health · /rehabilitation · /infection · /rheumatology
Child & family
/family · /child-development · /child-illness · /child-mental · /child-nutrition · /child-safety · /child-sleep · /child-vaccine
Women's & men's health
/cycle · /pregnancy · /postpartum · /menopause · /puberty · /male-menopause · /male-fertility · /prostate-health
Chronic disease & aging
/hypertension · /diabetes · /copd · /growth · /vaccine · /vaccination · /travel-health · /fall · /goal
💡 Full command specs and examples: User Guide (EN) · 用户指南(中文)
16 clinical specialty domains, coordinated by an MDT consultation orchestrator:
| # | Specialty | # | Specialty |
|---|---|---|---|
| 1 | Cardiology (心内科) | 9 | Neurology (神经内科) |
| 2 | Dermatology (皮肤科) | 10 | Oncology (肿瘤科) |
| 3 | Endocrinology (内分泌科) | 11 | Orthopedics (骨科) |
| 4 | Gastroenterology (消化科) | 12 | Pediatrics (儿科) |
| 5 | General Practice (全科) | 13 | Psychiatry (精神科) |
| 6 | Geriatrics (老年科) | 14 | Respiratory (呼吸科) |
| 7 | Gynecology (妇科) | 15 | Urology (泌尿科) |
| 8 | Hematology (血液科) | 16 | Nephrology (肾内科) |
Use /consult for a full MDT review or /specialist <domain> for a focused deep dive.
20 reusable analysis skills power the commands above:
ai-analyzer · emergency-card · family-health-analyzer · fitness-analyzer · food-database-query · goal-analyzer · health-trend-analyzer · infection-specialist · mental-health-analyzer · nutrition-analyzer · occupational-health-analyzer · oral-health-analyzer · rehabilitation-analyzer · sexual-health-analyzer · skin-health-analyzer · sleep-analyzer · tcm-constitution-analyzer · travel-health-analyzer · weightloss-analyzer · wellally-tech
🔧 Deep dive: Technical Implementation Details (中文) · Data Structure Spec
Built-in drug interaction detection covering drug–drug, drug–disease, drug–dose, and drug–food interactions, graded by a five-level severity system (A/B/C/D/X).
/interaction check # check current medications
/interaction list # list all rules
/interaction list X # show absolute-contraindication rules
📖 Drug Interaction Database Guide (中文) — medical professionals welcome to contribute.
WellAlly Health is designed for people who treat their medical history as strictly personal.
See docs/plans for design notes.
Contributions are welcome! Whether it's a new command, a specialist Skill, interaction rules, translations, or docs — we'd love your help.
Found a vulnerability? Please follow our Security Policy and report privately — do not open a public issue.
This system strictly follows medical safety principles:
All analysis from this system is for reference only and is not a basis for medical diagnosis. All medical decisions require consultation with a qualified professional. In an emergency, seek immediate medical attention.
Released under the MIT License.
Important Disclaimer: WellAlly Health is for personal health management only and is not a substitute for professional medical diagnosis or treatment.
Developed and maintained by WellAlly Tech.
.claude/
commands/
ai.md
allergy.md
child-development.md
child-illness.md
child-mental.md
child-nutrition.md
child-safety.md
child-sleep.md
child-vaccine.md
cognitive.md
consult.md
copd.md
cycle.md
diabetes.md
diet.md
discharge.md
eye-health.md
fall.md
family.md
fitness.md
get-profile.md
goal.md
growth.md
hypertension.md
interaction.md
male-fertility.md
male-menopause.md
medication.md
menopause.md
mental-health.md
mood.md
nutrition.md
occupational-health.md
oral-health.md
polypharmacy.md
postpartum.md
pregnancy.md
prepare.md
profile.md
prostate-health.md
psych-assess.md
puberty.md
query.md
radiation-data.md
radiation.md
rehabilitation.md
report-instructions.md
report.md
save-report.md
screening.md
sexual-health.md
skin-health.md
sleep.md
specialist.md
surgery.md
symptom.md
tcm-constitution.md
travel-health.md
vaccine.md
settings.local.json
skills/
ai-analyzer/
SKILL.md
emergency-card/
examples.md
formats.md
SKILL.md
family-health-analyzer/
SKILL.md
fitness-analyzer/
SKILL.md
food-database-query/
SKILL.md
goal-analyzer/
SKILL.md
health-trend-analyzer/
algorithms.md
data-sources.md
examples.md
SKILL.md
templates/
charts-config.js
custom-styles.css
report-template.html
test-data/
profile-mock.json
mental-health-analyzer/
SKILL.md
nutrition-analyzer/
SKILL.md
occupational-health-analyzer/
SKILL.md
oral-health-analyzer/
SKILL.md
rehabilitation-analyzer/
SKILL.md
sexual-health-analyzer/
SKILL.md
skin-health-analyzer/
SKILL.md
sleep-analyzer/
SKILL.md
tcm-constitution-analyzer/
SKILL.md
travel-health-analyzer/
SKILL.md
weightloss-analyzer/
SKILL.md
specialists/
cardiology.md
consultation-coordinator.md
dermatology.md
endocrinology.md
gastroenterology.md
general.md
geriatrics.md
gynecology.md
hematology.md
nephrology.md
neurology.md
oncology.md
orthopedics.md
pediatrics.md
psychiatry.md
README.md
respiratory.md
urology.md
.gitattributes
.github/
CONTRIBUTING.en.md
CONTRIBUTING.md
ISSUE_TEMPLATE/
bug_report.md
feature_request.md
PULL_REQUEST_TEMPLATE.md
SECURITY.en.md
SECURITY.md
.gitignore
AI_FEATURES_IMPLEMENTATION_SUMMARY.md
CHANGELOG.md
CODE_OF_CONDUCT.md
commands/
ai.md
allergy.md
child-development.md
child-illness.md
child-mental.md
child-nutrition.md
child-safety.md
child-sleep.md
child-vaccine.md
cognitive.md
consult.md
copd.md
cycle.md
diabetes.md
diet.md
discharge.md
eye-health.md
fall.md
family.md
fitness.md
get-profile.md
goal.md
growth.md
hypertension.md
interaction.md
male-fertility.md
male-menopause.md
medication.md
menopause.md
mental-health.md
mood.md
nutrition.md
occupational-health.md
oral-health.md
polypharmacy.md
postpartum.md
pregnancy.md
prepare.md
profile.md
prostate-health.md
psych-assess.md
puberty.md
query.md
radiation-data.md
radiation.md
rehabilitation.md
report-instructions.md
report.md
save-report.md
screening.md
sexual-health.md
skin-health.md
sleep.md
specialist.md
surgery.md
symptom.md
tcm-constitution.md
travel-health.md
vaccine.md
data-example/
allergies.json
andropause-tracker.json
child-development-tracker.json
child-illness-tracker.json
child-mental-tracker.json
child-nutrition-tracker.json
child-safety-tracker.json
child-sleep-tracker.json
child-vaccinations.json
copd-tracker.json
cycle-tracker.json
diabetes-tracker.json
eye-health-tracker.json
family-health-tracker.json
fertility-tracker.json
fitness-logs/
.index.json
2025-06/
2025-06-20.json
fitness-tracker.json
fitness-tracker.json.backup
food-categories.json
food-database.json
growth-tracker.json
health-goals-logs/
2025-01/
2025-01-01.json
2025-03/
2025-03-20.json
health-goals-tracker.json
hypertension-tracker.json
index.json
interactions/
interaction-db.json
menopause-tracker.json
mental-health-logs/
.index.json
2025-06/
2025-06-20.json
mental-health-reports/
comprehensive-mental-health-report-2025-06-20.md
crisis-risk-report-2025-06-20.md
mental-health-trend-report-2025-06-20.md
mood-pattern-report-2025-06-20.md
therapy-progress-report-2025-06-20.md
mental-health-tracker.json
nutrition-logs/
.index.json
2025-06/
2025-06-20.json
nutrition-tracker.json
nutrition-tracker.json.backup
nutritional-reference.json
occupational-health-tracker.json
oral-health-tracker.json
postpartum-tracker.json
pregnancy-tracker.json
profile.json
prostate-tracker.json
radiation-records.json
README-food-database.md
README.md
rehabilitation-logs/
.index.json
2025-06/
2025-06-20.json
rehabilitation-tracker.json
reminders.json
screening-tracker.json
sexual-health-tracker.json
skin-health-tracker.json
sleep-logs/
.index.json
2025-06/
2025-06-20.json
sleep-tracker.json
tcm-constitution-logs/
2025-06/
2025-06-20.json
tcm-constitution-tracker.json
travel-health-logs/
pre-trip-assessment-2025-07-28.json
travel-health-tracker.json
vaccinations.json
vaccine-database.json
docs/
data-structures.en.md
data-structures.md
drug-interaction-database.md
github-growth-checklist.md
marketing/
devto-article.md
execution-checklist.md
github-discussions.md
github-readme-badges.md
indie-hackers.md
juejin-article.md
qiita-article.md
README.en.md
reddit-privacy.md
strategy.md
v2ex-post.md
plans/
2025-01-14-child-health-commands-design.md
2025-01-14-weight-loss-design.md
2025-01-14-weight-loss-implementation.md
postpartum-care-guide.md
safety-guidelines.md
technical-details.md
user-guide.en.md
user-guide.md
womens-health-implementation-summary.md
womens-health-integration.md
womens-health-safety-checklist.md
LICENSE
package.json
README.md
README.zh-CN.md
scripts/
__pycache__/
ai_prediction.cpython-314.pyc
generate_ai_report.cpython-314.pyc
ai_prediction.py
generate_ai_report.py
generate_emergency_card.py
generate_health_report.py
README.md
test-ai-features.sh
test-children-health.sh
test-chronic-diseases.sh
test-elderly-health.sh
test-eye-health.sh
test-family-health.sh
test-fitness.sh
test-food-database.sh
test-health-goals.sh
test-mens-health.sh
test-mental-health.sh
test-nutrition.sh
test-occupational-health.sh
test-oral-health.sh
test-rehabilitation.sh
test-sexual-health.sh
test-skin-health.sh
test-sleep.sh
test-tcm-constitution.sh
test-travel-health.sh
test-weightloss.sh
test.sh
weightloss_calculations.py
skills/
ai-analyzer/
SKILL.md
emergency-card/
examples.md
formats.md
SKILL.md
family-health-analyzer/
SKILL.md
fitness-analyzer/
SKILL.md
food-database-query/
SKILL.md
goal-analyzer/
SKILL.md
health-trend-analyzer/
algorithms.md
data-sources.md
examples.md
SKILL.md
templates/
charts-config.js
custom-styles.css
report-template.html
test-data/
profile-mock.json
mental-health-analyzer/
SKILL.md
nutrition-analyzer/
SKILL.md
occupational-health-analyzer/
SKILL.md
oral-health-analyzer/
SKILL.md
rehabilitation-analyzer/
SKILL.md
sexual-health-analyzer/
SKILL.md
skin-health-analyzer/
SKILL.md
sleep-analyzer/
SKILL.md
tcm-constitution-analyzer/
SKILL.md
travel-health-analyzer/
SKILL.md
... 77 moreFAQ
wellally-health is a Claude Code plugin with 37 hand-picked skills for data work, indexed on Flowy. Install it with the command on its page. It includes ai-analyzer, emergency-card, family-health-analyzer. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.