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

Naver Blog Research

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

This is a Python stdlib web scraper for Naver blogs, Korea's dominant blogging platform. It searches posts, extracts full text from the mobile site to avoid iframe issues, and downloads images from Naver's CDN. No API key needed. Use it when you're researching Korean language content and Google isn't enough, like finding wedding checklists or local how-to guides that live on Naver. The scripts parse HTML directly, so they'll break if Naver changes their markup. Designed for light, non-commercial research, not bulk scraping. If you need Korean blog content and can tolerate some fragility, this beats manual copy-paste.

Install to Claude Code

npx -y skills add nomadamas/k-skill --skill naver-blog-research --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

네이버 블로그 리서치

What this skill does

네이버 블로그를 검색하고, 개별 포스트의 원문을 읽고, 이미지를 로컬에 다운로드한다.

  • API 키 없이 python3 표준 라이브러리만으로 동작한다.
  • 검색 결과를 구조화된 JSON으로 출력한다.
  • 모바일 버전(m.blog.naver.com)을 이용해 iframe 없이 본문을 직접 추출한다.
  • 블로그 이미지 CDN(blogfiles.naver.net, postfiles.pstatic.net)에서 이미지를 다운로드한다.

When to use

  • "네이버 블로그에서 결혼식 체크리스트 검색해줘"
  • "네이버 블로그 리서치 해줘"
  • "한국 블로그에서 관련 정보 조사해줘"
  • "네이버 블로그 글 읽어줘"
  • "이 네이버 블로그 포스트에서 이미지 다운로드해줘"
  • 한국어 콘텐츠 리서치에서 구글 외 네이버 블로그 소스가 필요한 상황

When not to use

  • 네이버 뉴스, 카페, 지식iN 등 블로그 외 네이버 서비스 검색
  • 대량 크롤링/스크래핑 (한 세션에 수십 건 이상의 요청)
  • 상업적 데이터 수집

Prerequisites

  • 인터넷 연결
  • python3 3.8+
  • 이 스킬 디렉토리의 scripts/ 안에 포함된 helper 스크립트

Workflow

1. 네이버 블로그 검색

python3 scripts/naver_search.py "검색어" --count 10 --sort sim
인자필수설명기본값
queryO검색어-
--countX결과 수 (최대 30)10
--sortXsim(관련도), date(최신)sim
--timeoutX요청 타임아웃(초)15

출력 예시:

{
  "query": "결혼식 체크리스트",
  "total_results": 7,
  "results": [
    {
      "title": "결혼식 체크리스트 총정리",
      "url": "https://blog.naver.com/user123/224212849946",
      "mobile_url": "https://m.blog.naver.com/user123/224212849946",
      "snippet": "결혼식 1주일 전에 반드시 확인해야 할...",
      "author": "user123"
    }
  ]
}

2. 블로그 원문 읽기

검색 결과에서 관심 있는 포스트의 URL을 선택하여 원문을 읽는다.

python3 scripts/naver_read.py "https://blog.naver.com/user123/224212849946"
인자필수설명기본값
urlO블로그 포스트 URL (PC 또는 모바일)-
--no-imagesX이미지 URL 제외false
--max-lengthX본문 최대 글자 수 (0=무제한)0
--timeoutX요청 타임아웃(초)20

PC URL을 넣어도 자동으로 모바일 URL로 변환하여 요청한다.

3. 이미지 다운로드 (필요 시)

python3 scripts/naver_download_images.py --urls "url1,url2,url3" --output ./images/

또는 naver_read.py 결과를 파이프로 전달:

python3 scripts/naver_read.py "https://..." | python3 scripts/naver_download_images.py --output ./images/
인자필수설명기본값
--urlsX쉼표 구분 이미지 URL-
--outputX저장 디렉토리./naver-images/
--maxX최대 다운로드 수10
--timeoutX요청 타임아웃(초)15

추천 워크플로우

  1. naver_search.py로 검색 → 상위 3~5개 결과 확인
  2. 관련도 높은 포스트를 naver_read.py로 원문 읽기
  3. 필요 시 naver_download_images.py로 이미지 저장
  4. WebSearch(구글) 결과와 교차 검증하여 정보 신뢰도 높이기

Response policy

  • 검색 결과와 본문은 사용자에게 요약하여 전달한다.
  • 블로그 출처(URL, 작성자)를 반드시 함께 안내한다.
  • 한 세션에 과도한 요청(수십 건 이상)을 자제한다.
  • 이미지 다운로드 시 사용자에게 저장 경로를 안내한다.

Done when

  • 검색 결과가 JSON으로 정상 출력된다.
  • 블로그 원문 텍스트가 추출된다.
  • 필요한 이미지가 로컬에 저장된다.
  • 출처가 명시된다.

Notes

  • 네이버 검색엔진을 직접 요청하므로 대량/자동화 사용 시 IP 차단 가능성이 있다.
  • 이 스킬은 소량, 비상업적 콘텐츠 리서치 용도로 설계되었다.
  • 네이버 HTML 구조는 변경될 수 있어, 파싱 실패 시 에러 메시지를 확인하고 스크립트 업데이트가 필요할 수 있다.
  • PC 버전(blog.naver.com)은 iframe 구조여서 모바일 버전(m.blog.naver.com)을 사용한다.
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 →
Categories
DocumentationData Science & ML
First SeenMay 16, 2026
View on GitHub

Recommended

More Documentation →
blog-writing-guide

getsentry/skills

blog writing guide
1.3k
761
technical-writing

supercent-io/skills-template

Create clear, comprehensive technical documentation for specs, architecture, runbooks, and APIs.
11.7k
88
user-guide-writing

supercent-io/skills-template

Create clear, user-focused documentation with step-by-step guides, screenshots, and FAQ sections.
10.7k
88
doc-writing

huangjia2019/claude-code-engineering

Generate API documentation from a route manifest. Use when you have a list of discovered routes and need to produce markdown documentation.
826
docs-sandpack

reactjs/react.dev

If you're working on React documentation with live code examples, this skill gives you the Sandpack patterns the React team actually uses.
11.7k
docs-writer-learn

reactjs/react.dev

If you're contributing to React documentation or building similar technical learning content, this skill knows the patterns cold.
11.7k