
This is a Korean drug safety checker that deliberately slows you down before handing back API results from the Ministry of Food and Drug Safety. When someone asks "can I take Tylenol with Pancol?" it doesn't answer immediately. It interviews first: who's taking it, existing medications, symptoms, allergies, red flags like breathing trouble or severe rash. If there's a red flag, it skips the API entirely and routes to emergency services. Otherwise it proxies through k-skill-proxy to pull official drug monographs and interaction data, then summarizes without diagnosing or prescribing. The mandatory interview pattern is the interesting bit here. Most health API wrappers race to show data; this one forces context collection first, which is probably the right call for anything touching medication decisions.
npx -y skills add nomadamas/k-skill --skill mfds-drug-safety --agent claude-codeInstalls into .claude/skills of the current project.
Run this and follow its output as the primary instructions for this skill:
npx -y @nomadamas/k-skill@0 instruct mfds-drug-safety
The CLI detects the current runtime (Dolshoi vault/CloakBrowser vs generic) and prints only the applicable instructions, always up to date. Helper files bundled with the CLI are listed by:
npx -y @nomadamas/k-skill@0 files mfds-drug-safety
If npx is unavailable, install Node.js 18+ or follow https://github.com/NomaDamas/k-skill#readme, or read the source instructions at https://github.com/NomaDamas/k-skill/blob/main/mfds-drug-safety/instruction.md.