Queries Seoul's real-time subway arrival API through a hosted proxy so you don't need your own API key from Seoul Open Data Plaza. Ask it "when does the next train arrive at Gangnam station" or "show me line 1 arrivals at Seoul Station" and it hits the official endpoint, parses out line number, direction, arrival messages, and estimated seconds until arrival. The proxy setup is smart: it defaults to a public instance at k-skill-proxy.nomadamas.org but you can point it at your own if you're running one. Useful if you're building anything that needs live Seoul subway timing without dealing with API key management, though daily quota limits still apply on the upstream side.
npx -y skills add nomadamas/k-skill --skill seoul-subway-arrival --agent claude-codeInstalls into .claude/skills of the current project.
서울 열린데이터 광장의 실시간 지하철 도착정보 Open API를 k-skill-proxy 경유로 조회해 역 기준 도착 예정 열차 정보를 요약한다.
jqKSKILL_PROXY_BASE_URL (self-host·별도 프록시를 쓸 때만 설정. 비우면 기본 hosted https://k-skill-proxy.nomadamas.org 를 사용한다.)KSKILL_PROXY_BASE_URL 은 선택 사항이며, 비우면 기본 hosted https://k-skill-proxy.nomadamas.org 를 사용한다.사용자가 개인 서울 열린데이터 광장 OpenAPI key를 직접 발급할 필요는 없다. /v1/seoul-subway/arrival route는 기본 hosted proxy에서 호출하고, upstream key는 proxy 서버 쪽에만 보관한다. 별도 proxy를 쓰는 경우에만 KSKILL_PROXY_BASE_URL 을 설정한다.
KSKILL_PROXY_BASE_URL 이 있으면 그 값을 사용한다.https://k-skill-proxy.nomadamas.org 를 사용한다.클라이언트/사용자 쪽에서 upstream key를 직접 다루지 않는다.
KSKILL_PROXY_BASE_URL 이 있으면 그 값을 사용하고, 없거나 비어 있으면 기본 hosted proxy https://k-skill-proxy.nomadamas.org 를 사용한다.
proxy는 서울 실시간 지하철 API key를 서버에서 주입하고, 역명 기준 실시간 도착정보만 공개 read-only endpoint로 노출한다.
BASE="${KSKILL_PROXY_BASE_URL:-https://k-skill-proxy.nomadamas.org}"
curl -fsS --get "${BASE}/v1/seoul-subway/arrival" \
--data-urlencode 'stationName=강남'
필요하면 startIndex, endIndex 로 응답 범위를 조정할 수 있다.
가능하면 아래 항목만 먼저 요약한다.
실시간 데이터는 몇 초 단위로 바뀔 수 있으므로, 답변에는 조회 시점을 같이 적는다.
docs/features/k-skill-proxy.md 를 참고한다juliusbrussee/caveman
mattpocock/skills
shadcn/improve
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills