From k-skill
Finds nearby bars in Korea using Kakao Map search and place detail panels. Always asks for the user's current location first, then returns open-now bars with menu, seating, and phone info.
How this skill is triggered — by the user, by Claude, or both
Slash command
/k-skill:kakao-bar-nearbyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
유저가 알려준 현재 위치를 기준으로 **카카오맵 기준 근처 술집**을 찾아준다.
유저가 알려준 현재 위치를 기준으로 카카오맵 기준 근처 술집을 찾아준다.
서울역, 강남, 사당, 신논현, 논현 같은 역명/동네/랜드마크 질의를 그대로 받을 수 있다.위치 정보 없이 바로 검색하지 말고 반드시 먼저 물어본다.
현재 위치를 알려주세요. 서울역/강남/사당 같은 역명이나 동네명으로 보내주시면 카카오맵 기준 근처 술집을 찾아볼게요.가까운 역명이나 동 이름으로 한 번만 더 알려주세요.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;
});
npx claudepluginhub nomadamas/k-skill --plugin k-skill3plugins reuse this skill
First indexed Jun 6, 2026
Searches Kakao Local places (keyword/category/coordinate) and gets car directions from Kakao Mobility via proxy. No API key needed.
Discovers and ranks local businesses in any neighborhood using Nimble WSAs and web data, returning structured lists with scores, reviews, and an interactive map.
Exhaustively searches Google Places using grid-based scanning to find all places, not just top results. Useful for comprehensive location data collection, market research, or mapping.