Pulls business operating status directly from South Korea's Local Government Permit Data system without needing API credentials. You give it a business name and a city district (like 제주제주시 or 서울종로구), and it downloads the regional CSV to check if a restaurant, hotel, pharmacy, or any of 208 licensed business types is operating, suspended, or closed, plus when they got their permit and their last update. It caches files locally for a day since the national datasets are hundreds of megabytes per industry. No business registration numbers in this dataset, so you get name string matches only. Useful when you need to verify if a local shop is still open or how long they've been around, based on permit records that update daily with a two day lag.
npx -y skills add nomadamas/k-skill --skill localdata-business-status --agent claude-codeInstalls into .claude/skills of the current project.
행정안전부 **지방행정 인허가데이터(LOCALDATA)**의 지역별 CSV를 file.localdata.go.kr에서 직접 받아, 동네 사업장의 영업상태를 조회한다.
전국 통파일이 업종당 수백 MB라 시군구 단위 지역 지정(--region)이 필요하다. 받은 파일은 1일 로컬 캐시한다.
이 자료에는 사업자등록번호가 수록되지 않는다. 상호(사업장명) 문자열 일치 후보의 사실만 나열하며, 동명 상호 가능성은 사용자가 판단한다. 자료는 매일 갱신되며 2일 전 기준으로 현행화된다.
python3 (stdlib만 사용 — 추가 의존성 없음)scripts/localdata_business_status.py helperdata/localdata_industries.json(업종 208종), data/localdata_orgcodes.json(지자체 245종)--name: 상호(사업장명) — 필수--region: 시군구 — 필수 (예: 제주제주시, 서울종로구, 경기수원시)--industry: 업종 slug 또는 한글명 (여러 번 지정 가능). 생략 시 일반음식점·휴게음식점·숙박업python3 localdata-business-status/scripts/localdata_business_status.py \
--name "호텔샬롬" --region 제주제주시 --industry 숙박업
# 업종 여러 개
python3 localdata-business-status/scripts/localdata_business_status.py \
--name "○○약국" --region 서울종로구 --industry 약국
unavailable + 안내: 상호/지역 미입력, 지역·업종 특정 실패(후보 나열), 다운로드 실패 — 수동 확인 URL 제공.total_match_count: 0).https://file.localdata.go.kr/file/download/<업종slug>/info?orgCode=<지자체코드> (무인증, Referer 필요, CP949 CSV)juliusbrussee/caveman
mattpocock/skills
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills