Install
openclaw skills install @bluecolumnconsulting-lgtm/remember-medical-notesPrivate, authorized health-appointment memory for care continuity. Use when an agent tracks appointments, symptoms, and provider instructions for an authorized user, with consent and confidentiality built in. Requires a BlueColumn API key (bc_live_*).
openclaw skills install @bluecolumnconsulting-lgtm/remember-medical-notesCare continuity lives in the details: the symptom timeline, the provider's instructions, the next follow-up. This skill keeps those details organized and private — for the authorized user and no one else.
Privacy first. Store only what the user authorizes. Never share notes outside the user's context. Use the
privatetag and treat every entry as confidential.
After each visit, store the provider, date, key facts, and instructions.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-remember \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "APPT: Dr. Osei, Jul 30. Bloodwork normal. Started low-dose magnesium. Instructions: increase water, follow up in 6 weeks if symptoms persist.", "title": "appt - Dr. Osei Jul 30", "tags": ["private", "medical"]}'
Before an appointment, recall the history so the user arrives ready.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-recall \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"q": "What was discussed at the last appointment and what follow-ups were scheduled?"}'
Track symptoms over time so patterns become visible instead of anecdotal.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-note \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "Symptom log: headaches 3x this week, mornings mainly, mild. Tension? hydration? Tracking through Aug 14.", "tags": ["private", "symptom-log"]}'
API reference: https://bluecolumn.ai/docs — fields are text, q, tags (not content/query/note).