Send health questions to Nori and return the response. Nori analyzes data from wearables (Apple Watch, Oura, Garmin, Whoop, etc.), meals, workouts, weight, and lab results.
SKILL.md
Nori Health Coach
Send health questions to Nori and return the response. Nori analyzes data from wearables (Apple Watch, Oura, Garmin, Whoop, etc.), meals, workouts, weight, and lab results.
Setup
Install the Nori iOS app and connect your wearables
In the Nori app, go to Settings > Integrations > OpenClaw
"Compare my sleep on days I work out vs rest days"
"What should I eat to hit my protein goal today?"
"Show me my resting heart rate trend this month"
"How's my recovery looking after yesterday's run?"
"I had two eggs and toast with avocado for breakfast"
"I did 30 minutes of strength training"
"What patterns do you see between my sleep and HRV?"
Usage
Send the user's message to Nori via the chat endpoint. Always forward the user's exact words.
Use jq -n to safely escape the user's message into valid JSON, and capture the HTTP status code to handle errors:
bash
RESPONSE=$(curl -s -w "\n%{http_code}" -X POST "https://api.nori.health/api/v1/openclaw/chat" \
-H "Authorization: Bearer $NORI_API_KEY" \
-H "Content-Type: application/json" \
-d "$(jq -n --arg msg "USER_MESSAGE_HERE" '{message: $msg}')")
HTTP_CODE=$(echo "$RESPONSE" | tail -1)
BODY=$(echo "$RESPONSE" | sed '$d')
if [ "$HTTP_CODE" -eq 200 ]; then
echo "$BODY" | jq -r '.reply'
elif [ "$HTTP_CODE" -eq 401 ]; then
echo "Your Nori API key is invalid. Please regenerate it in the Nori app under Settings > Integrations > OpenClaw."
elif [ "$HTTP_CODE" -eq 429 ]; then
echo "Rate limited. Wait a moment and try again."
else
echo "Something went wrong connecting to Nori (HTTP $HTTP_CODE)."
fi
Response Handling
On success (200): return the .reply field directly to the user as plain text. Do not add markdown formatting, bullet points, or other decoration.
On 401: tell the user their Nori API key is invalid and to regenerate it in the Nori app.
On 429: tell the user to wait a moment and try again.
On other errors: tell the user something went wrong connecting to Nori, including the HTTP status code.
Important
Forward the user's message verbatim. Do not rephrase, summarize, or add context.
Return Nori's reply verbatim. Do not reformat, summarize, or add commentary.
Nori handles all health data analysis, logging, and coaching. Your job is just to relay messages.
Nori is not a medical service. If the user asks for medical diagnosis or emergency help, direct them to a doctor or emergency services instead.
Limited provenance information — review the source before installing.
Freshness11/15
Updated within the last 6 months.
Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.
Proud of your score? Add this badge to your README.
Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.
Score badge
Markdown
[](https://www.claudemarket.ai/skills/danmurphy1217/nori-health)
HTML
<a href="https://www.claudemarket.ai/skills/danmurphy1217/nori-health"><img src="https://www.claudemarket.ai/skills/danmurphy1217/nori-health/badges/score.svg" alt="Nori Health skill"/></a>
Nori Health FAQ
How do I install the Nori Health skill?
Run “clawhub install danmurphy1217/nori-health” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.
What does the Nori Health skill do?
Send health questions to Nori and return the response. Nori analyzes data from wearables (Apple Watch, Oura, Garmin, Whoop, etc.), meals, workouts, weight, and lab results. The SKILL.md section on this page shows the exact instructions the skill gives your agent.
Is the Nori Health skill free?
Yes. Nori Health is a free, open-source skill by danmurphy1217. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.
Does Nori Health work with Claude Code and OpenClaw?
Yes. Skills use the portable SKILL.md format, so Nori Health works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.