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.
식약처 공식 OpenAPI를 k-skill-proxy 경유로 조회해 의약품개요정보(e약은요) 와 안전상비의약품 정보를 확인한다.
하지만 사용자가 증상이나 복용 상황을 말하면 바로 단정하지 말고 먼저 되묻는다.
호흡곤란, 의식저하, 심한 발진, 지속되는 구토/흉통)red flag 가 있으면 API 조회보다 즉시 119·응급실·의료진 연결을 우선한다.
python3scripts/mfds_drug_safety.py helper 포함k-skill-proxy의 /v1/mfds/drug-safety/lookup route가 있는 hosted/self-host 프록시에 접근 가능할 것KSKILL_PROXY_BASE_URL — self-host·별도 프록시를 쓸 때만 설정. 비우면 기본 hosted https://k-skill-proxy.nomadamas.org 를 사용한다.DATA_GO_KR_API_KEY 는 프록시 운영 서버 환경에만 둔다.증상/복용상황이 언급되면 바로 결론을 말하지 말고 먼저 되묻는다.
권장 첫 질문 예시:
누가 복용하려는지(본인/아이/임산부/고령자), 이미 먹은 약 이름, 언제 얼마나 복용했는지, 지금 있는 증상을 먼저 알려주세요.호흡곤란, 의식저하, 입술·혀 붓기, 심한 전신 발진이 있으면 즉시 119 또는 응급실로 가야 합니다.https://www.data.go.kr/data/15075057/openapi.dohttps://apis.data.go.kr/1471000/DrbEasyDrugInfoService/getDrbEasyDrugListhttps://www.data.go.kr/data/15097208/openapi.dohttps://apis.data.go.kr/1471000/SafeStadDrugService/getSafeStadDrugInqGET /v1/mfds/drug-safety/lookupk-skill-proxy의 /v1/mfds/drug-safety/lookup 으로 공식 정보를 조회한다.같이 먹어도 되나? 질문에는 공식 상호작용 문구만 근거로 제시하고, 최종 판단은 약사·의료진 확인이 필요하다고 명시한다.python3 scripts/mfds_drug_safety.py interview \
--question "타이레놀이랑 판콜 같이 먹어도 되나요?" \
--symptoms "두드러기와 어지러움"
python3 scripts/mfds_drug_safety.py lookup --item-name "타이레놀" --item-name "판콜"
juliusbrussee/caveman
mattpocock/skills
shadcn/improve
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills