Help us improve
Share bugs, ideas, or general feedback.
From k-skill
Uses the Nara/PNU Korean spell-check web surface to proofread Korean text, chunking long input and returning change-focused correction suggestions with original text, correction, and reason.
npx claudepluginhub nomadamas/k-skill --plugin k-skillHow this skill is triggered — by the user, by Claude, or both
Slash command
/k-skill:korean-spell-checkThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
국립국어원 계열 규칙을 반영한 **바른한글(구 부산대 맞춤법/문법 검사기)** 표면을 이용해 한국어 문장을 최종 교정한다.
Detects and corrects Korean grammar, spelling, spacing, and punctuation errors per standard rules. Handles issues like 되/돼, dependent spacing, particles, tense. Use for docs review, code comments, real-time edits, learning, official quality.
Polishes AI-generated Korean text to sound natural and human. Runs a multi-phase rewriting pipeline (Fast mode by default, strict 5-person pipeline with --strict). Outputs change rate, grade, category-level detection counts, and highlights.
Detects and removes AI-detectable patterns in Korean text including '~를 넘어' phrases, forbidden words, repetitions, and unnatural structures. Use before publishing for human-like content.
Share bugs, ideas, or general feedback.
국립국어원 계열 규칙을 반영한 바른한글(구 부산대 맞춤법/문법 검사기) 표면을 이용해 한국어 문장을 최종 교정한다.
https://nara-speller.co.kr/speller/ 이다.https://nara-speller.co.kr/old_speller/results 를 낮은 요청량으로만 사용한다.원문, 교정안, 이유 중심으로 정리한다.https://nara-speller.co.kr/old_speller/ 는 비상업적 용도 안내와 개인이나 학생만 무료라는 문구를 명시한다.https://nara-speller.co.kr/robots.txt 는 / 를 허용하지만 /test_speller/ 는 금지한다.python3 3.10+scripts/korean_spell_check.py (설치 시 자동 포함)https://nara-speller.co.kr/speller/ 로 제공된다.403 이 나올 수 있었다.urllib POST 는 old_speller/results 에서 실제 검사 결과 HTML을 반환했다.1500 자 안팎으로 유지한다.1초 정도 쉬게 한다.python3 scripts/korean_spell_check.py \
--file README.md \
--format json
짧은 문장은 --text 로 바로 넣을 수 있다.
python3 scripts/korean_spell_check.py \
--text "아버지가방에들어가신다." \
--format text
최종 답변은 아래 순서를 권장한다.
원문, 교정안, 이유공개 웹 검사기 기준 결과이며, 최종 문맥 판단은 사람이 확인 문구예시 JSON 필드:
{
"original": "아버지가방에들어가신다",
"suggestions": ["아버지가 방에 들어가신다"],
"reason": "띄어쓰기, 붙여쓰기, 음절 대치와 같은 교정 방법에 따라 수정한 결과입니다."
}
원문/교정안/이유 중심으로 정리했다.https://nara-speller.co.kr/guide/https://nara-speller.co.kr/speller/https://nara-speller.co.kr/old_speller/, https://nara-speller.co.kr/old_speller/resultshttps://nara-speller.co.kr/robots.txt