# Health-Agent — Hermes-accessible mirror **Path (Linux/macOS):** `/opt/data/synced/Health-Agent` **Owner:** moe-isa:staff (mode 0700 chain — health-only) **Status:** ONE-SHOT LOCAL MIRROR — NOT LIVE-SYNCED ## What this folder is A stable, POSIX-path mirror of the top-level structure of Jacqui's Windows OneDrive folder: C:\Users\jacqu\OneDrive\Documents\My Cabinets\Personal\Health - Agent Hermes and other agents on this host can read/write here using a predictable path instead of a Windows UNC or OneDrive URL. ## Current state (as of 2026-07-10) - Contents were mirrored **one-shot** from the 2026-07-09 snapshot at `/opt/openclaw/clients/jacqui-griffin/output/hermes-handoff/2026-07-09-health-agent/health-agent.zip` (archive root `Health - Agent/`, 491 files, ~734 MB uncompressed). - Files were copied in with `rsync --ignore-existing`, so no pre-existing scaffold files (README.md, sync.sh, per-folder NOTES.md) were overwritten and nothing was deleted. - Total file count after mirror: **503** (491 mirrored + 12 pre-existing scaffold files). - The folder is **readable and writable locally** by moe-isa (verified 2026-07-10 with a create/read/delete round-trip). ## Limitations - The Windows OneDrive path above is **not mounted** on this Mac. - No `rclone` OneDrive remote is configured (only `sayed-drive:` Google Drive exists). - No macOS OneDrive client is installed. `~/Library/CloudStorage` shows only iCloud Drive. - This mirror is therefore **not live-synced to OneDrive**. Files created or modified here do NOT propagate back to OneDrive, and changes made on OneDrive after 2026-07-09 are NOT reflected here. - The original OneDrive folder is **untouched**. Nothing in this mirror will overwrite or delete anything on OneDrive until a two-way sync is wired up. - Scope is **health-only** — this path holds Jacqui's Health - Agent tree and nothing else. ## To make this a live sync (future work) Two viable options: 1. **rclone + OneDrive remote** (recommended for headless Mac): ``` rclone config # add remote type "onedrive", auth as Jacqui rclone bisync onedrive:"Documents/My Cabinets/Personal/Health - Agent" \ /opt/data/synced/Health-Agent \ --create-empty-src-dirs --resync # first run only ``` Then re-run without `--resync` on a schedule. 2. **Install Microsoft OneDrive for Mac** signed in as Jacqui, then symlink: ``` ln -s "$HOME/Library/CloudStorage/OneDrive-Personal/Documents/My Cabinets/Personal/Health - Agent" \ /opt/data/synced/Health-Agent-live ``` (Keep the scaffold path as a fallback.) Until one of the above is done, treat this folder as a **frozen 2026-07-09 snapshot plus write-forward staging area**: Hermes may read the mirrored files and create new artefacts here, but Jacqui's canonical, up-to-date health documents still live on OneDrive. ## Helper script `./sync.sh` is a stub that will invoke rclone once a OneDrive remote named `jacqui-onedrive` is configured. It refuses to run until then, so it cannot accidentally wipe anything.