If you're building something for Korean users who need to find public parking, this taps into Data.go.kr's official nationwide parking database and uses Kakao Maps to pin coordinates. It always asks for location first instead of guessing, then returns the closest 3-5 spots sorted by distance with details like rates, hours, and capacity. The workflow is clear: get location, geocode it, query the API, format results. One thing to know upfront is that the official data doesn't include real-time availability or reservation status, so you're working with static info and base date timestamps. It's built for "find me parking near Gwanghwamun" style queries and keeps things honest about what the data can and can't tell you.
npx -y skills add nomadamas/k-skill --skill parking-lot-search --agent claude-codeInstalls into .claude/skills of the current project.
유저가 알려준 현재 위치를 기준으로 근처 공영주차장 을 찾는다.
공영 주차장만 보여준다.전국주차장정보표준데이터 Open API를 사용한다.위치 정보 없이 바로 검색하지 말고 반드시 먼저 물어본다.
권장 질문:
현재 위치를 알려주세요. 동네/역명/랜드마크/위도·경도 중 편한 형식으로 보내주시면 근처 공영주차장을 찾아볼게요.
위치가 애매하면:
가까운 역명이나 동 이름으로 한 번만 더 알려주세요.
https://www.data.go.kr/data/15012896/standard.dohttps://www.data.go.kr/data/15012896/openapi.dohttps://api.data.go.kr/openapi/tn_pubr_prkplce_info_api/v1/parking-lots/searchhttps://m.map.kakao.com/actions/searchView?q=<query>https://place-api.map.kakao.com/places/panel3/<confirmId>시도 + 시군구 address hint를 만든다./v1/parking-lots/search 또는 parking-lot-search 패키지로 공식 주차장 데이터를 조회한다.결과는 보통 아래 필드를 포함해 짧게 정리한다.
const { searchNearbyParkingLotsByLocationQuery } = require("parking-lot-search");
async function main() {
const result = await searchNearbyParkingLotsByLocationQuery("광화문", {
limit: 3,
radius: 1500
});
console.log(result.anchor);
console.log(result.items);
}
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});
Issue #135에서 모두의주차장 연동 가능성을 언급했지만, v1은 공식 공공데이터 기반으로 시작한다. 승인된 공식/파트너 API 계약이 확인되기 전에는 모두의주차장 비공식 API 호출이나 scraping을 하지 않는다.
juliusbrussee/caveman
mattpocock/skills
shadcn/improve
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills