This hooks into Korea's E-Gen public emergency room monitoring system to find nearby ERs and their current operational status. You give it a location (neighborhood, landmark, or coordinates), and it returns a distance-sorted list showing whether each ER is accepting patients, bed availability flags, trauma center designation, and last update time. The workflow is careful about limitations: it explicitly won't claim exact bed counts or capacity percentages because the public API only provides operational flags, not real-time numbers. It always reminds users to call 119 or the hospital directly in actual emergencies. Useful for non-critical situations where you want to know which nearby ERs are open and operating before heading out.
npx -y skills add nomadamas/k-skill --skill emergency-room-beds --agent claude-codeInstalls into .claude/skills of the current project.
사용자가 알려준 현재 위치를 기준으로 근처 응급실과 공개 E-Gen 응급실 상태 플래그를 찾는다.
위치 정보가 없으면 먼저 물어본다.
현재 위치를 알려주세요. 동네/역명/랜드마크/위도·경도 중 편한 형식으로 보내주시면 근처 응급실 상태를 찾아볼게요.
https://dw.nemc.or.kr/nemcMonitoring/mainmgr/Main.dohttps://www.e-gen.or.kr/egen/search_emergency_room.dohttps://www.e-gen.or.kr/egen/retrieve_emergency_room_list.dohttps://m.map.kakao.com/actions/searchView?q=<query>https://place-api.map.kakao.com/places/panel3/<confirmId>emergency-room-beds 패키지의 searchNearbyEmergencyRoomsByLocationQuery()를 사용한다.결과는 짧고 실용적으로 정리한다.
const { searchNearbyEmergencyRoomsByLocationQuery } = require("emergency-room-beds");
async function main() {
const result = await searchNearbyEmergencyRoomsByLocationQuery("광화문", {
limit: 3,
radius: 5
});
console.log(result.anchor);
console.log(result.items);
}
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});
juliusbrussee/caveman
mattpocock/skills
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills