# Send Nori Health to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "nori-health",
    "name": "Nori Health",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/danmurphy1217/nori-health",
    "canonicalUrl": "https://clawhub.ai/danmurphy1217/nori-health",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/nori-health",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nori-health",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "nori-health",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T18:30:38.184Z",
      "expiresAt": "2026-05-09T18:30:38.184Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nori-health",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nori-health",
        "contentDisposition": "attachment; filename=\"nori-health-1.0.6.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "nori-health"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/nori-health"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/nori-health",
    "downloadUrl": "https://openagent3.xyz/downloads/nori-health",
    "agentUrl": "https://openagent3.xyz/skills/nori-health/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nori-health/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nori-health/agent.md"
  }
}
```
## Documentation

### 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
Generate an API key (starts with nori_)
Set the environment variable:
export NORI_API_KEY="nori_your_key_here"

Or add to ~/.openclaw/openclaw.json:
{
  "skills": {
    "entries": {
      "nori-health": {
        "apiKey": "nori_your_key_here"
      }
    }
  }
}

### When to Use

"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:

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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: danmurphy1217
- Version: 1.0.6
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T18:30:38.184Z
- Expires at: 2026-05-09T18:30:38.184Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/nori-health)
- [Send to Agent page](https://openagent3.xyz/skills/nori-health/agent)
- [JSON manifest](https://openagent3.xyz/skills/nori-health/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/nori-health/agent.md)
- [Download page](https://openagent3.xyz/downloads/nori-health)