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

Household Waste Info

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

This pulls household waste collection schedules from South Korea's data.go.kr API so you can answer questions like "when does Gangnam-gu collect food waste?" in Korean. It queries by district name (시군구) and returns pickup days, times, locations, and methods for general waste, food waste, and recyclables. The proxy setup means users don't need their own API key, which is nice for casual use, but you're limited to basic district-level queries since fancier filters don't pass through. Responses can be verbose, so you'll want to summarize the essentials like collection schedule, contact info, and any blackout days. Works well for quick neighborhood waste info without opening a government portal.

Install to Claude Code

npx -y skills add nomadamas/k-skill --skill household-waste-info --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

Household Waste Info

What this skill does

행정안전부 생활쓰레기배출정보 Open API를 조회해 지역별 생활쓰레기/음식물쓰레기/재활용품 배출 기준과 요일/시간 정보를 안내한다.

  • 기본 조회 단위는 시군구명(SGG_NM)이다.
  • 응답은 사용자에게 이해하기 쉬운 요약 형태로 정리한다.
  • Base URL은 원본 API(https://apis.data.go.kr/1741000/household_waste_info)를 기준으로 한다.
  • serviceKey(DATA_GO_KR_API_KEY)만 proxy 서버에서 주입/관리한다.

When to use

  • "강남구 쓰레기 배출 요일 알려줘"
  • "우리 동네 음식물쓰레기 언제 버려?"
  • "재활용품 배출 시간 확인해줘"
  • "생활쓰레기 배출 장소/방법 찾아줘"

Prerequisites

  • 인터넷 연결
  • curl, python3 사용 가능 환경
  • 원본 API 접근 가능 환경
  • API 키 주입용 proxy 접근 가능 환경

Credential requirements

기본적으로 사용자 측 필수 인증키는 없다.

선택 환경변수:

  • KSKILL_PROXY_BASE_URL (self-hosted proxy를 쓸 때)

인증키 사용 원칙:

  1. endpoint/파라미터 체계는 원본 API를 따른다.
  2. serviceKey 값은 proxy 서버가 관리하고 주입한다.
  3. 사용자 측 로컬 환경에 DATA_GO_KR_API_KEY를 둘 필요가 없다.

Official API surface

  • Base URL: https://apis.data.go.kr/1741000/household_waste_info
  • Endpoint: GET /info
  • (key injection only) proxy: k-skill-proxy가 serviceKey를 서버 측에서 주입

Default path

추가 client API 레이어는 불필요하다. Base URL은 원본 API를 기준으로 유지한다.

현재 proxy가 지원하는 쿼리 파라미터:

  • cond[SGG_NM::LIKE]: 시군구명 포함 검색 (필수)
  • pageNo / numOfRows(또는 page_no / num_of_rows): 필수, 값은 반드시 1 / 100 — 그 외 값·비정수(숫자만 아닌) 문자열은 400. upstream에는 항상 1페이지·100건만 전달한다.
  • returnType: proxy가 항상 json으로 강제 — 클라이언트가 값을 보내도 무시된다
  • serviceKey: proxy가 서버 측에서 주입 — 클라이언트에서 전달 금지

원본 API의 cond[DAT_CRTR_YMD::*], cond[DAT_UPDT_PNT::*] 같은 부가 필터는 현재 proxy 라우트에서 패스스루되지 않는다. 사용자가 보내는 일반적인 질의("강남구 쓰레기 배출 요일")는 시군구 기준 검색만으로 충분하므로, 필요하다면 응답에서 DAT_UPDT_PNT 기준으로 클라이언트에서 정렬한다.

Workflow

1) Ask location first

사용자 지역 정보 없이 바로 조회하지 않는다.

  • 권장 질문: 확인할 지역(시/군/구)을 알려주세요. 예: 강남구, 수원시 영통구

2) Validate input and resolve query

  • 시군구 입력이 비어 있으면 다시 물어본다.
  • 모호한 입력이면 상위 행정구역 포함 형태로 재질문한다.

3) Call via proxy (serviceKey injected server-side)

proxy가 serviceKey를 서버 측에서 주입한 뒤 원본 API로 전달한다.

curl -fsS --get 'https://k-skill-proxy.nomadamas.org/v1/household-waste/info' \
  --data-urlencode "cond[SGG_NM::LIKE]=강남구" \
  --data-urlencode "pageNo=1" \
  --data-urlencode "numOfRows=100"

returnType은 proxy가 항상 json으로 강제하므로 클라이언트에서 별도로 보낼 필요가 없다.

KSKILL_PROXY_BASE_URL이 있으면 그 값을 사용하고, 없으면 기본 hosted proxy(k-skill-proxy.nomadamas.org)를 사용한다.

4) Summarize for user

응답에서 필요한 항목만 간단히 정리한다.

  • 관리구역/대상지역 (MNG_ZONE_NM, MNG_ZONE_TRGT_RGN_NM)
  • 배출장소/배출방법 (EMSN_PLC, LF_WST_EMSN_MTHD, FOD_WST_EMSN_MTHD, RCYCL_EMSN_MTHD)
  • 배출요일/시간 (LF_WST_EMSN_DOW, FOD_WST_EMSN_DOW, RCYCL_EMSN_DOW, 각 시작/종료시간)
  • 미수거일 (UNCLLT_DAY)
  • 문의처 (MNG_DEPT_NM, MNG_DEPT_TELNO)

Done when

  • 사용자 지역(시군구)을 확인했다.
  • proxy /v1/household-waste/info 호출에 성공했다.
  • 배출 요일/시간/장소를 3~6개 핵심 포인트로 요약해 안내했다.

Failure modes

  • 프록시 서버에 DATA_GO_KR_API_KEY가 없거나 만료된 경우 (serviceKey 주입 실패)
  • 검색 지역명이 API 데이터와 불일치하여 결과가 비는 경우
  • 공공데이터 API 일시 장애/트래픽 제한
  • 필수 파라미터 누락(cond[SGG_NM::LIKE], 또는 pageNo / numOfRows 미전달)
  • pageNo / numOfRows 값이 1 / 100이 아니거나, 숫자만으로 표현되지 않은 문자열인 경우(proxy 400, upstream 미호출)

Notes

  • 사용자 측에 DATA_GO_KR_API_KEY를 저장하지 않고 proxy 서버에서만 관리한다.
  • API raw payload를 그대로 노출하지 말고 사용자 친화적으로 요약한다.
  • 응답이 여러 건이면 최신 DAT_UPDT_PNT 기준으로 우선 정렬해 보여준다.
  • 공식 데이터 출처: 공공데이터포털 (https://www.data.go.kr)
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 SeenApr 16, 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