OpenClaw
Deploy a managed OpenClaw agent in 60 seconds
Launch on Hostinger →
Hermes Agent
Run your Hermes agent, fully managed
Launch on Hostinger →
Apify
6,000+ web scrapers for your agent, free to start
Try Apify free →
Firecrawl
Crawl and scrape any site into clean data
Try Firecrawl free →
Context.dev
One API to scrape, enrich, and extract the web
Start building free →
SetupClaw
Done-for-you OpenClaw for founders and teams
Get it set up for you →
DataForSEO
SEO data APIs for your agent, $1 free credit
Try DataForSEO free →
Your product here
Reach thousands of AI builders a month
Learn more →
Claude Market
Menu
SkillsMCPPluginsSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Claude Market
SkillsMCPPluginsSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Skills/nomadamas/k-skill/kakao-bar-nearby
kakao-bar-nearby logo

kakao-bar-nearby

nomadamas/k-skill
3K installs6K stars
Run it on Hostinger, 20% off →Your friend gets 20% off too, using this linkFree API →|View on GitHub|Create your own skill →

Installation

npx skills add https://github.com/nomadamas/k-skill --skill kakao-bar-nearby

Summary

Use when the user asks for nearby bars or 근처 술집. Always ask the user's current location first, then use Kakao Map search + place detail panels to find open-now bars with menu, seating, and phone hints.

SKILL.md

Kakao Bar Nearby

What this skill does

유저가 알려준 현재 위치를 기준으로 카카오맵 기준 근처 술집을 찾아준다.

  • 위치는 자동으로 추정하지 않는다.
  • 반드시 먼저 현재 위치를 질문한다.
  • 서울역, 강남, 사당, 신논현, 논현 같은 역명/동네/랜드마크 질의를 그대로 받을 수 있다.
  • 결과에는 현재 영업 상태, 대표 메뉴, 좌석 옵션(단체석/바테이블 등), 전화번호를 포함한다.

When to use

  • "서울역 근처 술집 찾아줘"
  • "강남에서 지금 영업중인 와인바 뭐 있어?"
  • "논현 근처 4명 갈만한 술집 알려줘"
  • "사당에서 전화번호 있는 이자카야 몇 군데만 보여줘"

Mandatory first question

위치 정보 없이 바로 검색하지 말고 반드시 먼저 물어본다.

  • 권장 질문: 현재 위치를 알려주세요. 서울역/강남/사당 같은 역명이나 동네명으로 보내주시면 카카오맵 기준 근처 술집을 찾아볼게요.
  • 위치가 애매하면: 가까운 역명이나 동 이름으로 한 번만 더 알려주세요.

Official Kakao Map surfaces

  • 모바일 검색: https://m.map.kakao.com/actions/searchView?q=<query>
  • 장소 패널 JSON: https://place-api.map.kakao.com/places/panel3/<confirmId>
  • 장소 상세 페이지: https://place.map.kakao.com/<confirmId>

Workflow

  1. 유저에게 반드시 현재 위치를 묻는다.
  2. 받은 위치 문자열을 카카오맵 검색으로 anchor 후보(역/랜드마크)로 해석한다.
  3. 같은 위치 문자열에 술집 키워드를 붙여 nearby 술집 검색 결과를 가져온다.
  4. 상위 후보의 panel3 JSON 을 조회해 현재 영업 상태, 메뉴, 좌석 옵션, 전화번호를 정규화한다.
  5. 영업 중인 술집을 먼저 보여주고, 필요하면 곧 열 곳도 함께 보여준다.

Responding

보통 3~5개만 짧게 정리한다.

  • 술집명
  • 카테고리
  • 영업 상태 (영업 중, 영업 전, 휴무일 등)
  • 대표 메뉴 2~3개
  • 좌석/인원 수용 힌트 (단체석, 바테이블 등)
  • 전화번호
  • 거리(가능하면)

Node.js example

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;
});

Done when

  • 유저의 현재 위치를 먼저 확인했다.
  • 카카오맵 기준 술집 결과를 최소 1개 이상 찾았거나, 찾지 못한 이유와 다음 질문을 제시했다.
  • 영업 상태/메뉴/좌석 옵션/전화번호가 포함된 요약을 보여줬다.

Score

0–100
71/ 100

Grade

B

Popularity23/30

2,623 installs — solid traction. Source repo has 5,593 GitHub stars.

Completeness27/30

Documented: full SKILL.md body, description, one-line install. Missing: category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Kakao Bar Nearby skill score badge previewScore badge

Markdown

[![Kakao Bar Nearby skill](https://www.claudemarket.ai/skills/nomadamas/k-skill/kakao-bar-nearby/badges/score.svg)](https://www.claudemarket.ai/skills/nomadamas/k-skill/kakao-bar-nearby)

HTML

<a href="https://www.claudemarket.ai/skills/nomadamas/k-skill/kakao-bar-nearby"><img src="https://www.claudemarket.ai/skills/nomadamas/k-skill/kakao-bar-nearby/badges/score.svg" alt="Kakao Bar Nearby skill"/></a>

Kakao Bar Nearby FAQ

How do I install the Kakao Bar Nearby skill?

Run “npx skills add https://github.com/nomadamas/k-skill --skill kakao-bar-nearby” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Kakao Bar Nearby skill do?

Use when the user asks for nearby bars or 근처 술집. Always ask the user's current location first, then use Kakao Map search + place detail panels to find open-now bars with menu, seating, and phone hints. The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Kakao Bar Nearby skill free?

Yes. Kakao Bar Nearby is a free, open-source skill published from nomadamas/k-skill. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Kakao Bar Nearby work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Kakao Bar Nearby works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Recommended skills

Browse all →
find-skills logo

find-skills

vercel-labs/skills

2.8M installsInstall
grill-me logo

grill-me

mattpocock/skills

751K installsInstall
frontend-design logo

frontend-design

anthropics/skills

740K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

638K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

626K installsInstall
improve-codebase-architecture logo

improve-codebase-architecture

mattpocock/skills

614K installsInstall

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideHow To Find The Right Openclaw Skill For Your ProjectGuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before Installing

Skills by category

FrontendBackend & APIsTesting & QASecurityDevOps & CI/CDMCP & ToolingAutomationData & Analysis+20 more

MCP servers by category

AI & MLDeveloper ToolsVector & MemoryFiles & DocsDatabasesFinance & PaymentsBrowser & ScrapingCommunication+8 more

Plugins by category

developmentproductivitycommunicationdesignsecuritydatabaseworkflowcompliance+34 more

The Agent Stack

Weekly Claude Code, Agent SDK, and MCP moves worth your time — free.

Claude Market

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

Independent project, not affiliated with Anthropic.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Plugins

More

  • Submit a Tool
  • Create a Skill
  • Advertise
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy
© 2026 Claude Market · Not affiliated with Anthropic
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed