Centralized health memory hub — manages daily logs and per-item longitudinal tracking files under memory/health/. WHEN TO USE: After any health skill records data, or when answering health questions that need historical context.
Instruction-only skill with no Python scripts. All operations are performed by the agent using built-in tools (Read/Write/Edit/Grep/Glob).
memory/health/) for all health data across skillsfiles/; only summaries appear in memory (never full text)memory/health/
├── _health-profile.md # Long-term health baseline (manual / agent-maintained)
├── daily/ # Daily logs (one file per day)
│ ├── 2026-03-10.md
│ ├── 2026-03-09.md
│ └── ...
├── items/ # Per-item longitudinal tracking
│ ├── blood-pressure.md # Blood pressure history
│ ├── blood-sugar.md # Blood sugar history
│ ├── blood-lipids.md # Blood lipid history
│ ├── tumor-markers.md # Tumor marker history
│ ├── kidney-function.md # Kidney function history
│ ├── weight.md # Weight history
│ ├── medications.md # Medication records
│ ├── supplements.md # Supplement records
│ └── ... # Agent creates new files as needed
└── files/ # Health documents (PDFs, images, etc.)
├── 2026-03-10_blood_routine.pdf
└── ...
Path: memory/health/daily/YYYY-MM-DD.md
---