zenplus-healthAccess your Zen+ Health wellness data - notifications, timeline, and catalogue
Install via ClawdBot CLI:
clawdbot install ollieparsley/zenplus-healthWorkplace wellness for stress, anxiety, and burnout. Access mindfulness exercises, breathing techniques, mood check-ins, notifications, your activity timeline, and a full wellbeing catalogue directly from OpenClaw.
Use this skill when the user:
When triggered by stress or anxiety, browse the catalogue for a suitable exercise and present it with context and a direct link.
This skill requires a personal API key from Zen+ Health.
user:restrictedtimeline:readnotification:readcatalog:readworking_hours:read
export ZEN_API_BASE_URL="https://api.zenplus.health"
export ZEN_API_KEY="zen_ak_your_40_character_api_key_here"
API keys are read-only and can be revoked at any time from your Zen+ Health settings.
Fetch your recent Zen+ Health notifications.
curl -H "Authorization: Bearer ${ZEN_API_KEY}" \
"${ZEN_API_BASE_URL}/v1/me/notifications?limit=10"
Example use: "Show me my latest Zen+ notifications"
View your timeline of completed activities and progress.
curl -H "Authorization: Bearer ${ZEN_API_KEY}" \
"${ZEN_API_BASE_URL}/v1/me/timeline?days=7"
Example use: "What's on my Zen+ timeline this week?"
Explore available wellness tasks and activities.
curl -H "Authorization: Bearer ${ZEN_API_KEY}" \
"${ZEN_API_BASE_URL}/v1/catalog"
Example use: "Show me the Zen+ Health task catalogue"
Fetch your user profile and preferences.
curl -H "Authorization: Bearer ${ZEN_API_KEY}" \
"${ZEN_API_BASE_URL}/v1/me"
Example use: "What's my Zen+ Health profile?"
All endpoints return JSON. Use jq to parse:
# Get notification titles
curl -s -H "Authorization: Bearer ${ZEN_API_KEY}" \
"${ZEN_API_BASE_URL}/v1/me/notifications" | jq -r '.notifications[].title'
# Count timeline events
curl -s -H "Authorization: Bearer ${ZEN_API_KEY}" \
"${ZEN_API_BASE_URL}/v1/me/timeline" | jq '.events | length'
# List catalogue categories
curl -s -H "Authorization: Bearer ${ZEN_API_KEY}" \
"${ZEN_API_BASE_URL}/v1/catalog" | jq -r '.tasks[].category' | sort -u
more_info_url in API responsesAI Usage Analysis
Analysis is being generated⦠refresh in a few seconds.
Plan, focus, and complete work with energy management, time blocking, and context-specific productivity systems.
Build habits with streaks, reminders, and progress visualization
Comprehensive AI-assisted therapeutic support framework with CBT, ACT, DBT, MI, session notes CLI, and crisis protocols.
iOS HealthKit data sync CLI commands and patterns. Use when working with healthsync CLI, fetching Apple Health data (steps, heart rate, sleep, workouts), pairing iOS devices over local network, or understanding the iOS Health Sync project architecture including mTLS certificate pinning, Keychain storage, and audit logging.
Retrieve and summarize health, sleep, activity, readiness, and biometric data from the Oura Ring API via a command-line interface.
Load and analyze Strava activities, stats, and workouts using the Strava API