{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/nori-health",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nori-health",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/nori-health",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Nori Health Coach",
        "body": "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."
      },
      {
        "title": "Setup",
        "body": "Install the Nori iOS app and connect your wearables\nIn the Nori app, go to Settings > Integrations > OpenClaw\nGenerate an API key (starts with nori_)\nSet the environment variable:\nexport NORI_API_KEY=\"nori_your_key_here\"\n\nOr add to ~/.openclaw/openclaw.json:\n{\n  \"skills\": {\n    \"entries\": {\n      \"nori-health\": {\n        \"apiKey\": \"nori_your_key_here\"\n      }\n    }\n  }\n}"
      },
      {
        "title": "When to Use",
        "body": "\"Compare my sleep on days I work out vs rest days\"\n\"What should I eat to hit my protein goal today?\"\n\"Show me my resting heart rate trend this month\"\n\"How's my recovery looking after yesterday's run?\"\n\"I had two eggs and toast with avocado for breakfast\"\n\"I did 30 minutes of strength training\"\n\"What patterns do you see between my sleep and HRV?\""
      },
      {
        "title": "Usage",
        "body": "Send the user's message to Nori via the chat endpoint. Always forward the user's exact words.\n\nUse jq -n to safely escape the user's message into valid JSON, and capture the HTTP status code to handle errors:\n\nRESPONSE=$(curl -s -w \"\\n%{http_code}\" -X POST \"https://api.nori.health/api/v1/openclaw/chat\" \\\n  -H \"Authorization: Bearer $NORI_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"$(jq -n --arg msg \"USER_MESSAGE_HERE\" '{message: $msg}')\")\nHTTP_CODE=$(echo \"$RESPONSE\" | tail -1)\nBODY=$(echo \"$RESPONSE\" | sed '$d')\n\nif [ \"$HTTP_CODE\" -eq 200 ]; then\n  echo \"$BODY\" | jq -r '.reply'\nelif [ \"$HTTP_CODE\" -eq 401 ]; then\n  echo \"Your Nori API key is invalid. Please regenerate it in the Nori app under Settings > Integrations > OpenClaw.\"\nelif [ \"$HTTP_CODE\" -eq 429 ]; then\n  echo \"Rate limited. Wait a moment and try again.\"\nelse\n  echo \"Something went wrong connecting to Nori (HTTP $HTTP_CODE).\"\nfi"
      },
      {
        "title": "Response Handling",
        "body": "On success (200): return the .reply field directly to the user as plain text. Do not add markdown formatting, bullet points, or other decoration.\nOn 401: tell the user their Nori API key is invalid and to regenerate it in the Nori app.\nOn 429: tell the user to wait a moment and try again.\nOn other errors: tell the user something went wrong connecting to Nori, including the HTTP status code."
      },
      {
        "title": "Important",
        "body": "Forward the user's message verbatim. Do not rephrase, summarize, or add context.\nReturn Nori's reply verbatim. Do not reformat, summarize, or add commentary.\nNori handles all health data analysis, logging, and coaching. Your job is just to relay messages.\nNori is not a medical service. If the user asks for medical diagnosis or emergency help, direct them to a doctor or emergency services instead."
      }
    ],
    "body": "Nori Health Coach\n\nSend 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.\n\nSetup\nInstall the Nori iOS app and connect your wearables\nIn the Nori app, go to Settings > Integrations > OpenClaw\nGenerate an API key (starts with nori_)\nSet the environment variable:\nexport NORI_API_KEY=\"nori_your_key_here\"\n\nOr add to ~/.openclaw/openclaw.json:\n{\n  \"skills\": {\n    \"entries\": {\n      \"nori-health\": {\n        \"apiKey\": \"nori_your_key_here\"\n      }\n    }\n  }\n}\n\nWhen to Use\n\"Compare my sleep on days I work out vs rest days\"\n\"What should I eat to hit my protein goal today?\"\n\"Show me my resting heart rate trend this month\"\n\"How's my recovery looking after yesterday's run?\"\n\"I had two eggs and toast with avocado for breakfast\"\n\"I did 30 minutes of strength training\"\n\"What patterns do you see between my sleep and HRV?\"\nUsage\n\nSend the user's message to Nori via the chat endpoint. Always forward the user's exact words.\n\nUse jq -n to safely escape the user's message into valid JSON, and capture the HTTP status code to handle errors:\n\nRESPONSE=$(curl -s -w \"\\n%{http_code}\" -X POST \"https://api.nori.health/api/v1/openclaw/chat\" \\\n  -H \"Authorization: Bearer $NORI_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"$(jq -n --arg msg \"USER_MESSAGE_HERE\" '{message: $msg}')\")\nHTTP_CODE=$(echo \"$RESPONSE\" | tail -1)\nBODY=$(echo \"$RESPONSE\" | sed '$d')\n\nif [ \"$HTTP_CODE\" -eq 200 ]; then\n  echo \"$BODY\" | jq -r '.reply'\nelif [ \"$HTTP_CODE\" -eq 401 ]; then\n  echo \"Your Nori API key is invalid. Please regenerate it in the Nori app under Settings > Integrations > OpenClaw.\"\nelif [ \"$HTTP_CODE\" -eq 429 ]; then\n  echo \"Rate limited. Wait a moment and try again.\"\nelse\n  echo \"Something went wrong connecting to Nori (HTTP $HTTP_CODE).\"\nfi\n\nResponse Handling\nOn success (200): return the .reply field directly to the user as plain text. Do not add markdown formatting, bullet points, or other decoration.\nOn 401: tell the user their Nori API key is invalid and to regenerate it in the Nori app.\nOn 429: tell the user to wait a moment and try again.\nOn other errors: tell the user something went wrong connecting to Nori, including the HTTP status code.\nImportant\nForward the user's message verbatim. Do not rephrase, summarize, or add context.\nReturn Nori's reply verbatim. Do not reformat, summarize, or add commentary.\nNori handles all health data analysis, logging, and coaching. Your job is just to relay messages.\nNori 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": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/danmurphy1217/nori-health",
    "publisherUrl": "https://clawhub.ai/danmurphy1217/nori-health",
    "owner": "danmurphy1217",
    "version": "1.0.6",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}