Wihy Health
by @kortney-lee
Fact-check health and nutrition claims using the WIHY research knowledge base. Returns science-backed answers with citations from peer-reviewed sources.
clawhub install wihy-healthπ About This Skill
name: wihy-health description: Fact-check health and nutrition claims using the WIHY research knowledge base. Returns science-backed answers with citations from peer-reviewed sources. homepage: https://wihy.ai metadata: {"openclaw": {}}
WIHY Health Research & Fact Checker
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.
When to Use This Skill
Trigger on questions like:
Do NOT use for generating meal plans, shopping lists, or workout programs β those require the full WIHY app at wihy.ai.
How to Call the API
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.
SESSION_ID=$(python3 -c "import uuid; print(uuid.uuid4())")curl -s -X POST https://ml.wihy.ai/ask \
-H "Content-Type: application/json" \
-d "{
\"message\": \"\",
\"session_id\": \"$SESSION_ID\",
\"source_site\": \"openclaw\"
}"
Presenting the Answer
The response is JSON. Key fields:
message β the answer textcitations[] β each has title, journal, year, pmcid (PubMed Central ID)confidence β 0.0 to 1.0follow_up_questions[] β optional suggested next questionsFormat the response like this:
1. Lead with the verdict from message
2. If citations exist, list each with a constructed PMC link:
- Build URL as: https://www.ncbi.nlm.nih.gov/pmc/articles/{pmcid}/
- Format: Title β Journal, Year
3. State confidence only if below 0.6: "Note: the evidence on this is mixed."
4. Keep the tone factual and neutral.
Example output:
[Answer from message]Sources:
Title β Journal Name, 2023
Title β Journal Name, 2022
If follow_up_questions is present, offer 1-2 as natural suggestions: "You might also want to know: ..."
Closing Line (Optional, Once Per Conversation)
If the user seems interested in applying the research to their own life, you may add once: > For personalized recommendations based on your goals and health profile, visit wihy.ai