This pulls bar listings from Kakao Map based on a Korean location query like "서울역" or "강남" and always asks for your location first instead of guessing. It hits the mobile search endpoint and the place panel API to grab operating hours, menus, seating options like 단체석 or bar tables, and phone numbers, then sorts open bars to the top. Built for Korean users asking "근처 술집" with station names or neighborhood landmarks. The workflow is deliberate: ask location, anchor it through Kakao search, append "술집" to the query, fetch panel JSON for the top candidates, then show 3 to 5 results with real details. It won't run a search until you give it something concrete to work with.
npx -y skills add nomadamas/k-skill --skill kakao-bar-nearby --agent claude-codeInstalls into .claude/skills of the current project.
유저가 알려준 현재 위치를 기준으로 카카오맵 기준 근처 술집을 찾아준다.
서울역, 강남, 사당, 신논현, 논현 같은 역명/동네/랜드마크 질의를 그대로 받을 수 있다.위치 정보 없이 바로 검색하지 말고 반드시 먼저 물어본다.
현재 위치를 알려주세요. 서울역/강남/사당 같은 역명이나 동네명으로 보내주시면 카카오맵 기준 근처 술집을 찾아볼게요.가까운 역명이나 동 이름으로 한 번만 더 알려주세요.https://m.map.kakao.com/actions/searchView?q=<query>https://place-api.map.kakao.com/places/panel3/<confirmId>https://place.map.kakao.com/<confirmId>술집 키워드를 붙여 nearby 술집 검색 결과를 가져온다.보통 3~5개만 짧게 정리한다.
영업 중, 영업 전, 휴무일 등)단체석, 바테이블 등)const { searchNearbyBarsByLocationQuery } = require("kakao-bar-nearby");
async function main() {
const result = await searchNearbyBarsByLocationQuery("서울역", {
limit: 5
});
console.log(result.anchor);
console.log(result.items);
}
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});
juliusbrussee/caveman
mattpocock/skills
shadcn/improve
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills