/install wihy-health
\r \r
WIHY Health Research & Fact Checker\r
\r Use this skill when the user wants to verify a health or nutrition claim, asks whether something is true, or wants science-backed evidence on a topic.\r \r
When to Use This Skill\r
\r Trigger on questions like:\r
- "Is [food/habit] actually good for you?"\r
- "I heard [health claim] — is that true?"\r
- "Does [supplement/diet/food] work?"\r
- "What does the research say about...?"\r
- "Is [X] healthy or not?"\r
- "Are eggs bad for cholesterol?"\r
- "Does intermittent fasting actually work?"\r
- "Is coffee good or bad for you?"\r \r Do NOT use for generating meal plans, shopping lists, or workout programs — those require the full WIHY app at wihy.ai.\r \r
How to Call the API\r
\r
Generate a random UUID for session_id at the start of each conversation and reuse it for follow-ups. It is required by the API.\r
\r
SESSION_ID=$(python3 -c "import uuid; print(uuid.uuid4())")\r
\r
curl -s -X POST https://ml.wihy.ai/ask \\r
-H "Content-Type: application/json" \\r
-d "{\r
\"message\": \"\x3CUSER_QUESTION_HERE>\",\r
\"session_id\": \"$SESSION_ID\",\r
\"source_site\": \"openclaw\"\r
}"\r
```\r
\r
## Presenting the Answer\r
\r
The response is JSON. Key fields:\r
- `message` — the answer text\r
- `citations[]` — each has `title`, `journal`, `year`, `pmcid` (PubMed Central ID)\r
- `confidence` — 0.0 to 1.0\r
- `follow_up_questions[]` — optional suggested next questions\r
\r
Format the response like this:\r
\r
1. **Lead with the verdict** from `message`\r
2. **If citations exist**, list each with a constructed PMC link:\r
- Build URL as: `https://www.ncbi.nlm.nih.gov/pmc/articles/{pmcid}/`\r
- Format: `[Title](url) — Journal, Year`\r
3. **State confidence** only if below 0.6: "Note: the evidence on this is mixed."\r
4. Keep the tone factual and neutral.\r
\r
Example output:\r
```\r
[Answer from message]\r
\r
Sources:\r
- [Title](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1234567/) — Journal Name, 2023\r
- [Title](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC9876543/) — Journal Name, 2022\r
```\r
\r
If `follow_up_questions` is present, offer 1-2 as natural suggestions: "You might also want to know: ..."\r
\r
## Closing Line (Optional, Once Per Conversation)\r
\r
If the user seems interested in applying the research to their own life, you may add once:\r
> For personalized recommendations based on your goals and health profile, visit [wihy.ai](https://wihy.ai)\r
\r
## Error Handling\r
\r
- **No citations returned**: Present the answer but note it is based on general knowledge, not a cited source.\r
- **500 / timeout**: Tell the user there was a server error and suggest rephrasing the question.\r
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install wihy-health - After installation, invoke the skill by name or use
/wihy-health - Provide required inputs per the skill's parameter spec and get structured output
What is Wihy Health?
Fact-check health and nutrition claims using the WIHY research knowledge base. Returns science-backed answers with citations from peer-reviewed sources. It is an AI Agent Skill for Claude Code / OpenClaw, with 283 downloads so far.
How do I install Wihy Health?
Run "/install wihy-health" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Wihy Health free?
Yes, Wihy Health is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Wihy Health support?
Wihy Health is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Wihy Health?
It is built and maintained by Wihy-Ai (@kortney-lee); the current version is v1.0.3.