From k-skill
Queries real-time water level and flow data for Han River observation stations from HRFCO (Han River Flood Control Office) by station name or code via a proxy API. Useful for checking current river conditions at bridges like Hannam or Jamsu.
How this skill is triggered — by the user, by Claude, or both
Slash command
/k-skill:han-river-water-levelThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
기본적으로 `https://k-skill-proxy.nomadamas.org/v1/han-river/water-level` 로 요청해서 현재 수위와 유량을 요약한다.
기본적으로 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 으로 최신값을 조회한다.npx claudepluginhub nomadamas/k-skill --plugin k-skillQueries real-time crowd density and estimated population for 121 Seoul hotspots (Gangnam, Hongdae, Myeongdong, etc.) via Seoul Open Data API. Use when asked how crowded a specific area is.
Queries SafeSwim NZ public swimming-location water quality, wastewater overflow alerts, and hour-by-hour forecasts via a CLI. Use for NZ beach/lake swimming safety, GREEN-to-BLACK risk levels, lifeguard status, and hazards.
Evaluates trail conditions (weather, snow, river crossings, exposure, maintenance) and outputs a GREEN/YELLOW/RED safety rating with go/no-go recommendations. Activates before hikes, during tour planning, after weather changes, or when damage/closures are reported.