This pulls real-time water level and flow rate data from the Han River Flood Control Office for specific observation stations in Korea. You ask by station name like "한강대교" or by station code, and it hits a proxy endpoint that handles the upstream API key for you. The proxy returns current water level in meters, flow rate in cubic meters per second, and relevant alert thresholds. If your query is too broad it'll give you a list of candidate stations to pick from. It's a straightforward wrapper around Korean government hydrological data, useful if you're building anything that needs to track Han River conditions without dealing with the HRFCO API directly.
npx -y skills add nomadamas/k-skill --skill han-river-water-level --agent claude-codeInstalls into .claude/skills of the current project.
기본적으로 https://k-skill-proxy.nomadamas.org/v1/han-river/water-level 로 요청해서 현재 수위와 유량을 요약한다.
stationName)stationCode)jq추가 client API 레이어는 불필요하다. 그냥 프록시 서버에 HTTP 요청만 넣으면 된다.
사용자는 별도 HRFCO ServiceKey 를 준비할 필요가 없다. upstream key는 proxy 서버에서만 주입한다.
KSKILL_PROXY_BASE_URL 환경변수가 있으면 그 값을 사용하고, 없으면 기본 경로 https://k-skill-proxy.nomadamas.org 를 사용한다.
curl -fsS --get 'https://k-skill-proxy.nomadamas.org/v1/han-river/water-level' \
--data-urlencode 'stationName=한강대교'
관측소코드로 바로 조회해도 된다.
curl -fsS --get 'https://k-skill-proxy.nomadamas.org/v1/han-river/water-level' \
--data-urlencode 'stationCode=1018683'
응답에는 아래만 먼저 정리한다.
입력이 너무 넓으면 proxy 는 ambiguous_station 과 함께 candidate_stations 를 돌려준다.
curl -fsS --get 'https://k-skill-proxy.nomadamas.org/v1/han-river/water-level' \
--data-urlencode 'stationName=한강'
이때는 후보 중 하나를 골라 다시 stationName 또는 stationCode 로 조회한다.
구현 세부는 아래 문서만 참고한다.
docs/features/han-river-water-level.mddocs/features/k-skill-proxy.mdHRFCO_OPEN_API_KEY 가 비어 있는 경우k-skill-proxy.nomadamas.org 의 water-level endpoint 다.waterlevel/info.json 으로 관측소 메타데이터를 찾고, waterlevel/list/10M/{WLOBSCD}.json 으로 최신값을 조회한다.juliusbrussee/caveman
mattpocock/skills
shadcn/improve
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills