This skill scrapes the official Joseon Dynasty Annals site (sillok.history.go.kr) to search historical records from Korea's 1392-1910 kingdom. You give it a keyword like "훈민정음" (Hunminjeongeum) and optionally filter by king or year, and it parses the search results HTML plus article detail pages to return excerpts in both classical Chinese and Korean translation. It's pure web scraping with a Python helper script, no API keys or embeddings. Useful if you're researching Korean history and want to pull primary source material directly from the National Institute of Korean History's database without clicking through their web interface manually. The v1 scope is intentionally narrow but functional.
npx -y skills add nomadamas/k-skill --skill joseon-sillok-search --agent claude-codeInstalls into .claude/skills of the current project.
국사편찬위원회 조선왕조실록 사이트(https://sillok.history.go.kr)에서 공식 검색 결과 HTML과 기사 상세 페이지를 직접 읽어 조선왕조실록 기록을 찾는다.
v1 범위는 단순 스크래핑이다.
--king)--year)python3scripts/sillok_search.py helper가 함께 들어 있다.세종, 정조, 세종실록 등)1443 같이 Gregorian year)--limit)--type k|w)
k: 국역 검색w: 원문 검색python3 scripts/sillok_search.py --query "..." 로 공식 검색 endpoint를 호출한다.--king, --year 로 결과를 추가로 좁힌다./id/<article_id> 상세 페이지를 열어 국역/원문 excerpt를 가져온다.python3 scripts/sillok_search.py --query "훈민정음"
python3 scripts/sillok_search.py --query "훈민정음" --king "세종" --year 1443 --limit 3
python3 scripts/sillok_search.py --query "측우기" --king "세종실록" --limit 5
python3 scripts/sillok_search.py --query "임진왜란" --type w --limit 5
--year 는 서기 연도 기준으로 필터링한다.세종, 세종실록처럼 조금 달라도 canonical 왕명으로 정규화한다.https://sillok.history.go.kr/id/... 형태로 정리되었다.https://sillok.history.go.krhttps://sillok.history.go.kr/search/searchResultList.dohttps://sillok.history.go.kr/id/<article_id>juliusbrussee/caveman
mattpocock/skills
shadcn/improve
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills