CareMax Members
/install caremax-members
CareMax Family Members
Requires
caremax-authas a sibling directory (../caremax-auth/). If missing, tell the user to install caremax-auth first (e.g.npx skills add KittenYang/caremax-skills).
List and work with family member profiles. CareMax supports tracking health data for multiple family members.
Prerequisites — Auto-Auth (MANDATORY)
APICALL="bash ../caremax-auth/scripts/api-call.sh"
If api-call.sh returns {"error":"no_credentials",...} → immediately run bash ../caremax-auth/scripts/auth-flow.sh [base_url] in background (from this skill’s root). If the user specified a custom URL, pass it as the argument.
List Members
$APICALL GET /api/skill/members
Response: {"members":[{"id":"...","name":"...","gender":"...","relationship":"self","is_default":1},...]}
Using memberId in Other Queries
Pass memberId to scope queries to a specific family member:
# Indicators for a specific member
$APICALL GET "/api/skill/indicators?memberId=xxx"
# Records for a specific member
$APICALL POST /api/skill/records/query '{"memberId":"xxx"}'
# Search for a specific member
$APICALL POST /api/skill/records/search '{"query":"血常规","memberId":"xxx"}'
Recommended Workflow
"show my wife's blood sugar":
# 1. Find spouse member
$APICALL GET /api/skill/members
# 2. Get indicators for that member (extract spouse's id)
$APICALL GET "/api/skill/indicators?memberId={spouse_id}"
# 3. Get trend for blood sugar indicator
$APICALL GET "/api/skill/indicators/trend?id={indicator_uuid}"
Notes
- Every account has a default member (
is_default: 1= the user themselves) - If no
memberIdspecified, queries return data for the default member relationshipvalues: self, spouse, child, parent, sibling, other
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install caremax-members - After installation, invoke the skill by name or use
/caremax-members - Provide required inputs per the skill's parameter spec and get structured output
What is CareMax Members?
Manage family members in CareMax Health. Use when a user asks about family health tracking, switching between family member profiles, or viewing another fami... It is an AI Agent Skill for Claude Code / OpenClaw, with 98 downloads so far.
How do I install CareMax Members?
Run "/install caremax-members" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is CareMax Members free?
Yes, CareMax Members is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does CareMax Members support?
CareMax Members is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created CareMax Members?
It is built and maintained by Qitao Yang (@kittenyang); the current version is v1.0.0.