If you've ever lost something on the Seoul subway, you know the official LOST112 and Seoul Metro lost property sites aren't exactly straightforward. This skill structures the search flow for you by taking station name, item type, and time range, then generates the exact LOST112 form payload (SITE=V for transit agencies, DEP_PLACE, date ranges) and gives you a runnable curl command. It's conservative by design because there's no stable public API, so v1 stays in guidance mode rather than trying to scrape results automatically. The Python helper handles referer headers and timeouts since the official site can be slow. Useful when you need to check 강남역 for a lost wallet without clicking through multiple forms blind.
npx -y skills add nomadamas/k-skill --skill subway-lost-property --agent claude-codeInstalls into .claude/skills of the current project.
지하철에서 잃어버린 물건을 찾기 위해 공식 경로를 구조화한다.
습득물 목록 조회에 넣을 검색 조건을 정리한다.https://www.lost112.go.kr/find/findList.dohttps://www.seoulmetro.co.kr/kr/page.do?menuIdx=541LOST112 검색 폼에서 확인되는 핵심 필드는 아래와 같다.
SITE=V: 경찰 이외 기관(지하철, 공항 등)DEP_PLACE: 보관장소PRDT_NM: 습득물명START_YMD, END_YMD: 검색 기간바로 추정하지 말고 아래 정보를 먼저 받는다.
repo helper를 그대로 써도 된다.
python3 scripts/subway_lost_property.py \
--station 강남역 \
--item 지갑 \
--days 14
helper는 기본적으로 SITE=V 를 사용하고, 역명/물품명/기간을 LOST112 form payload와 referer까지 포함한 runnable curl 예시로 정리해 준다. 예시 curl 은 느린 공식 응답을 감안해 --max-time 60 을 포함하고, 응답 HTML을 lost112-search-result.html 로 저장한다.
python3 scripts/subway_lost_property.py \
--station 강남역 \
--item 지갑 \
--days 14 \
--verify-live
--verify-live 는 공식 페이지 접근 가능 여부만 보수적으로 확인한다. 사이트가 느리면 timeout을 그대로 보고하고 manual open으로 전환한다.
강남처럼 역 없는 키워드로 재검색SITE=V, 역명, 물품명, 기간)을 받았다.juliusbrussee/caveman
mattpocock/skills
shadcn/improve
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills