CAT
/Skills
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Daangn Realty Search

nomadamas/k-skill
477 installs5.3k stars
Summary

A read-only search wrapper for Daangn (Karrot) real estate listings in Korea. It resolves region names to internal IDs, scrapes public Remix `_data` JSON routes for search results, and pulls details from JSON-LD and HTML meta tags. You can query by natural language ("find Hapjeong-dong jeonse") or run the Python helper directly with filters for sales type, trade type, and price. It handles duplicate region names with sensible fallbacks (Seoul dong-level preferred, then first match) and always shows you which region actually got applied. No auth, no favoriting, no booking automation, just listings with source URLs. Fails gracefully when Daangn changes their route structure or throws up a login wall.

Install to Claude Code

npx -y skills add nomadamas/k-skill --skill daangn-realty-search --agent claude-code

Installs into .claude/skills of the current project.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Files
SKILL.mdView on GitHub

Daangn Realty Search

What this skill does

당근부동산 목록의 공개 Remix _data JSON과 상세 페이지의 JSON-LD/HTML 메타를 읽어 매물 후보를 정리한다.

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

When to use

  • "당근부동산 합정동 전세 찾아봐"
  • "마포구 월세 매물 봐줘"
  • "이 당근부동산 URL 상세 요약해줘"

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/realty/?in=<지역명>-<id>&_data=routes/kr.realty._index
  • Detail: https://realty.daangn.com/articles/<id>의 application/ld+json 및 <title>

Workflow

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

Commands

python3 daangn-realty-search/scripts/daangn_realty.py search --region "합정동" --limit 5
python3 daangn-realty-search/scripts/daangn_realty.py search --region "합정동" --sales-type "APARTMENT" --trade-type "MONTHLY_RENT"
python3 daangn-realty-search/scripts/daangn_realty.py detail "https://realty.daangn.com/articles/..."

Output fields

  • title, salesType, trade, area, areaPyeong, totalManageCost, url
  • detail: JSON-LD, page title

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을 포함했다.
  • 인증/거래성 액션은 수행하지 않았다.
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
First SeenJun 3, 2026
View on GitHub

Recommended

caveman

juliusbrussee/caveman

Ultra-compressed communication mode cutting token usage ~75% while preserving technical accuracy.
203.4k
67.8k
grill-me

mattpocock/skills

Relentless interviewing skill that stress-tests plans and designs through systematic questioning.
250.9k
114.5k
improve

shadcn/improve

Survey any codebase as a senior advisor and produce prioritized, self-contained implementation plans for other models/agents to execute.
10
205
systematic-debugging

obra/superpowers

Structured debugging methodology that mandates root cause investigation before attempting any fixes.
124.6k
215.9k
karpathy-guidelines

forrestchang/andrej-karpathy-skills

Behavioral guidelines to reduce common LLM coding mistakes through explicit assumptions, simplicity, and verifiable success criteria.
13.9k
165.4k
find-skills

vercel-labs/skills

Discover and install specialized agent skills from the open ecosystem when users need extended capabilities.
1.8M
21.1k