What Can This Thing Really Do?
To be honestwhen I first saw this Turri/health-qamy initial reaction was: "Ohanother medical Q&A toy." But after digging into itI realized it's actually a proper Claw skill built by the compound-life-ai teamplaced in the Turri repositoryspecifically designed to answer various health questions.
Think about it: when we have a minor health issue—like a sore throatdiarrheaor a small red spot on the skin—our first instinct is to open Baidu or Zhihu and searchBut the results are either as obscure as academic papers or full of advertisementsIt's overwhelmingThis health Q&A skill is meant to solve that pain point—you ask in natural languageand it gives you a relatively reliable answerwithout any annoying ads.
Last time I tried itI asked"What should I do if I'm allergic to seafood?" It gave me very specific steps: firststop eating; then take antihistamines; and if severeseek immediate medical attentionAlthough you can find this information onlineit saves you the time of filtering and verifyingThat's genuinely convenient.
Installation Is Super Easy
Since it's an open-source projectyou'll need to install it yourselfBut don't worry—the whole process is just a few commands.
Prerequisite: You need Node.js and npm on your computerIf you don't have themgo to the official website and download the LTS version.
Open your terminal (Terminal on Mac/LinuxCMD or PowerShell on Windows)then enter the following command:
npx skills add https://github.com/compound-life-ai/Turri --skill health-qa
After hitting enternpx will automatically download the skill from GitHub and install it into your Claw environmentThe whole process takes anywhere from tens of seconds to a couple of minutesdepending on your network speedThe first time I installed itI was worried it might throw errorsbut it went smoothly without any issues.
If you prefer manual setupyou can also download the ZIP packageFind the "Download ZIP" button (under the green Code button)unzip itand place the health-qa folder into your skills directoryHoweverI personally recommend using npx because it's easier and automatically handles dependencies.
After installationhow do you use it? If you're usingjust click the "Run in " buttonIt will launch an interactive interface where you can type your questions.
Scenarios I Personally Tested
Once the skill was installedI couldn't wait to test its capabilitiesAfter allthere are so many chaotic AI assistants out there—some are just making things upThis health-qa is built on the Turri projectso it should have some substanceright?
I asked several questions in a row:
- "Is it useful to take cephalosporins for a cold?" — This is actually a tricky question because most colds are caused by virusesand cephalosporins are antibiotics that are ineffective against virusesThe skill's response was clear: "Cephalosporins are antibioticseffective only against bacterial infectionsCommon colds are usually caused by virusesand cephalosporins are not recommendedIt is advised to rest moredrink plenty of waterand seek medical attention for severe symptoms." Wellcorrect answer.
- "Can chronic hepatitis B (HBeAg positive) be cured?" — This involves professional medical knowledgeThe skill's response was cautious: it said a complete cure is currently not possiblebut antiviral drugs can control the condition and delay complications like cirrhosisThe wording was professional and not exaggerated.
- "How much water should I drink daily to stay healthy?" — This is a more everyday questionIt gave a recommended range: about 1.5-2 liters for adultsadjusted based on activity level and environmentIt also reminded not to drink too much at oncebut to sip small amounts throughout the dayVery scientific.
Overallthe quality of answers is decent—at least there were no obvious errors on common health issuesOf courseI also noticed some shortcomings—for exampleit might not understand or give a concrete answer for rare diseasesAfter allit's an open-source projectso the knowledge base is limited in scope.
Let Me Complain About the User Experience
Although the skill is good overallas someone who's used it a lotI still want to mention a few minor drawbacks.
Firstthe response speedThe first time it loads the modelit takes about ten to fifteen seconds to get a resultSubsequent questions are much fasterbut occasionally it still lagsMaybe it's my network? I don't really mind thoughsince it doesn't require an internet connection—it runs entirely on local model inference.
SecondChinese language supportI noticed it can recognize many medical termsbut when I asked in a very colloquial waylike "What's wrong with meI feel terrible all over?" it got a bit confused and gave a vague answerI suggest being a bit more formallike "What could be the causes of general malaise?"—that works much better.
Another point is the disclaimerAlthough the skill adds a line at the end of its response: "This answer is for reference only and does not constitute medical advice," I think it should prompt this more frequently during the conversation to prevent blind trustAfter allAI is not a doctorand the risk of misjudgment exists.
Who Should Use This Skill?
I think it's mainly for two types of people:
- Ordinary people for daily health check-ups. For exampleif you occasionally have a minor issue and don't want to search Baidu and get scared to deathuse this skill to get a quick understandingso you have some ideaand then decide whether to see a doctor.
- Tech enthusiasts or developers. You can treat this skill as a case study to learn how to build a Q&A system for your own domainIts code structure is quite clearIf you're interestedyou can fork it and modify it for other domainslike law or finance.
To be honestthis skill cannot replace professional medical servicesIt's just a tool—like a dictionary can't replace your writingbut it helps you obtain information more efficiently.