OpenClaw
Deploy a managed OpenClaw agent in 60 seconds
Launch on Hostinger →
Hermes Agent
Run your Hermes agent, fully managed
Launch on Hostinger →
Hostinger VPS
Spin up a VPS in one click, 20% off
Launch on Hostinger →
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 →
Jotform
Forms, workflows, and AI Agents for your team
Try Jotform free →
CodeRabbit
AI code reviews for every PR
Try CodeRabbit free →
Your product here
Reach 100k AI builders a month
Learn more →
Claude Market
Menu
SkillsMCPPluginsMarketplacesNewsletterSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Claude Market
SkillsMCPPluginsMarketplacesNewsletterSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Skills/nomadamas/k-skill/daangn-jobs-search
daangn-jobs-search logo

daangn-jobs-search

nomadamas/k-skill
707 installs
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 daangn-jobs-search

Summary

당근알바 공개 웹 데이터 표면으로 키워드·지역 기반 알바 공고 검색과 상세 조회를 수행한다. 지원/채팅 자동화는 제외한다.

SKILL.md

Daangn Jobs Search

What this skill does

당근알바 공개 Remix _data JSON route로 채용/알바 공고 목록과 상세 정보를 읽기 전용으로 조회한다.

최종 사용자는 자연어로 요청해도 되고, 필요하면 아래의 Python helper를 직접 실행한다. 외부 패키지나 k-skill-proxy 없이 Python 표준 라이브러리만 사용한다.

When to use

  • "당근알바 합정동 카페 찾아봐"
  • "홍대 근처 주말 알바 검색"
  • "이 당근알바 공고 상세 봐줘"

When not to use

  • 당근 계정 로그인이 필요한 작업
  • 채팅, 찜, 거래 제안, 문의, 지원, 예약, 계약, 구매처럼 상대방 또는 계정에 영향을 주는 작업
  • CAPTCHA/봇 차단/로그인벽 우회가 필요한 작업

Prerequisites

  • 인터넷 연결
  • Python 3.9+
  • 이 저장소 루트에서 실행하거나, 스크립트 경로를 절대경로로 지정

Data surfaces

  • Region resolver: https://www.daangn.com/kr/api/v1/regions/keyword?keyword=<지역명>
  • Search _data: /kr/jobs/?in=<지역명>-<id>&search=<keyword>&_data=routes/kr.jobs._index
  • Detail fallback: <job-url> redirects to jobs.daangn.com/job-posts/<id> and exposes public HTML title/meta/JSON-LD. The helper first tries the legacy _data route and falls back to HTML meta when that route returns an empty response.

Workflow

  1. 사용자 요청에서 키워드, 지역명, 가격/거래 유형 같은 필터를 추출한다.
  2. 지역명이 있으면 region resolver로 내부 region id를 찾는다.
  3. 목록 검색은 category별 _data route를 호출한다.
  4. 상세 URL이 주어지면 category별 detail route 또는 공개 HTML 메타를 조회한다.
  5. 결과를 짧게 정리하되 source URL과 적용 지역을 보존한다.

Commands

python3 daangn-jobs-search/scripts/daangn_jobs.py search "카페" --region "합정동" --limit 5
python3 daangn-jobs-search/scripts/daangn_jobs.py detail "https://www.daangn.com/kr/jobs/.../"

Output fields

  • title, company, region, address, salary, salaryType, workDays, workTimeStart, workTimeEnd, closed, url
  • detail: jobPost 원문 if the _data route is available; otherwise public page title, meta, and json_ld

Region handling

지역 필터가 있으면 먼저 당근 지역 검색 API로 내부 지역 id를 해석한다.

https://www.daangn.com/kr/api/v1/regions/keyword?keyword=합정동
→ 서울특별시 마포구 합정동, id=231
→ in=합정동-231

동일한 지명이 여러 지역에 있으면 다음 우선순위로 선택한다.

  1. 사용자가 입력한 문자열이 name, name1, name2, name3 중 하나와 정확히 맞는 후보
  2. 서울 depth=3 동 단위 후보
  3. 첫 번째 후보

응답에는 항상 effective_region 또는 실제 적용된 지역명을 포함한다. 사용자의 의도와 다른 지역으로 보이면 결과를 단정하지 말고 후보 확인을 요청한다. IP/쿠키 기본 위치에 의존하지 않는다.

Safety and scope

  • 읽기 전용 검색/상세 조회만 수행한다.
  • 로그인, 채팅, 찜, 거래 제안, 지원, 문의, 예약, 계약, 구매 자동화는 하지 않는다.
  • 공개 웹 표면이 바뀌거나 빈 응답/봇 차단/로그인벽이 나오면 실패 모드로 보고하고 우회하지 않는다.
  • 결과는 실시간 재고/공고 상태와 달라질 수 있으므로 source URL을 함께 제시한다.

Failure modes

  • 당근의 Remix route 이름이나 JSON shape가 변경되면 _data 조회가 실패할 수 있다.
  • 지역명이 넓거나 중복되면 다른 행정동이 선택될 수 있다.
  • 검색 결과가 0건이어도 사이트 정책/지역 기본값/필터 조합 때문일 수 있으므로 source URL을 보존한다.
  • 상세 조회는 삭제/종료/비공개 전환된 글에서 실패할 수 있다.

Done when

  • 지역명이 있으면 지역 id를 해석하고 적용했다.
  • 목록 조회 또는 상세 조회를 최소 1회 수행했다.
  • 결과에 source URL과 effective region을 포함했다.
  • 인증/거래성 액션은 수행하지 않았다.

Score

0–100
63/ 100

Grade

C

Popularity15/30

707 installs — growing adoption.

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.

Daangn Jobs Search skill score badge previewScore badge

Markdown

[![Daangn Jobs Search skill](https://www.claudemarket.ai/skills/nomadamas/k-skill/daangn-jobs-search/badges/score.svg)](https://www.claudemarket.ai/skills/nomadamas/k-skill/daangn-jobs-search)

HTML

<a href="https://www.claudemarket.ai/skills/nomadamas/k-skill/daangn-jobs-search"><img src="https://www.claudemarket.ai/skills/nomadamas/k-skill/daangn-jobs-search/badges/score.svg" alt="Daangn Jobs Search skill"/></a>

Daangn Jobs Search FAQ

How do I install the Daangn Jobs Search skill?

Run “npx skills add https://github.com/nomadamas/k-skill --skill daangn-jobs-search” 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 Daangn Jobs Search skill do?

당근알바 공개 웹 데이터 표면으로 키워드·지역 기반 알바 공고 검색과 상세 조회를 수행한다. 지원/채팅 자동화는 제외한다. The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Daangn Jobs Search skill free?

Yes. Daangn Jobs Search 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 Daangn Jobs Search work with Claude Code and OpenClaw?

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

Recommended skills

Browse all →
research logo

research

mattpocock/skills

251K installsInstall
ai-research-explore logo

ai-research-explore

lllllllama/rigorpilot-skills

199K installsInstall
ai-research-reproduction logo

ai-research-reproduction

lllllllama/rigorpilot-skills

199K installsInstall
find-skills logo

find-skills

vercel-labs/skills

2.9M installsInstall
grill-me logo

grill-me

mattpocock/skills

786K installsInstall
frontend-design logo

frontend-design

anthropics/skills

751K 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+27 more

MCP servers by category

MCP & ToolingBackend & APIsData & AnalysisDevOps & CI/CDAutomationSecurityDocsTesting & QA+24 more

Plugins by category

AutomationDevOps & CI/CDData & AnalysisDesign & CreativeSecurityBackend & APIsFrontendTesting & QA+16 more

Marketplaces by category

AutomationData & AnalysisDevOps & CI/CDDesign & CreativeFrontendBackend & APIsTesting & QASecurity+21 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
  • Browse Marketplaces
  • Newsletter

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