medium-ko-guide

medium-ko-guide is a skill for Claude Code from joonlab/joonlab-claudecode-setting-for-share. It costs 45 tokens per session (2,453 once invoked), scanned A, original, MIT.

A three-step tool that turns a Medium article—an article published on Medium—into a Korean Markdown guide. It accepts a Medium URL, an HTML file, or copied HTML.

In plain words
What is it for?
Use it to convert English Medium articles into Korean Markdown files with metadata, translated text, and embedded images.
Why use it?
It removes the manual work of extracting an article’s structure, translating it, and formatting the result. Code, links, images, captions, lists, and quotes are kept in the conversion.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to convert English Medium articles into Korean Markdown files with metadata, translated text, and embedded images.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/joonlab/joonlab-claudecode-setting-for-share/medium-ko-guide
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add joonlab/joonlab-claudecode-setting-for-share --skill medium-ko-guide
Clone the repo
git clone --depth 1 https://github.com/joonlab/joonlab-claudecode-setting-for-share

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for medium-ko-guide

README.md
[![agentmods](https://agentmods.dev/badge/skills/joonlab/joonlab-claudecode-setting-for-share/medium-ko-guide.svg)](https://agentmods.dev/skills/joonlab/joonlab-claudecode-setting-for-share/medium-ko-guide)
Your own site
<a href="https://agentmods.dev/skills/joonlab/joonlab-claudecode-setting-for-share/medium-ko-guide"><img src="https://agentmods.dev/badge/skills/joonlab/joonlab-claudecode-setting-for-share/medium-ko-guide.svg" alt="Measured on agentmods" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,453 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00045 $0.02453
Opus 5 $0.00023 $0.01226
Sonnet 5 $0.00009 $0.00491
Haiku 4.5 $0.00005 $0.00245

Measured 8d ago against content hash 171e0f6e4706, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

medium-ko-guide scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

claude/skills/medium-ko-guide/SKILL.md · 335 lines

How it starts

The opening of the file, as written. The whole thing — 335 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Medium Korean Guide Converter

Medium 아티클을 한국어 마크다운으로 변환하는 skill입니다.


실행 방법

사용자가 다음 중 하나를 제공하면 변환을 시작합니다:

  1. Medium URL
  2. 저장된 HTML 파일 경로
  3. 복사한 HTML 내용

3단계 파이프라인

Step 1: HTML 추출 (html-extractor agent)

Input: Raw HTML
Output: Structured JSON
Agent: html-extractor (model: haiku)

Task 도구로 html-extractor 에이전트를 호출:

  • HTML에서 본문 콘텐츠 구조 추출
  • 이미지 URL 및 캡션 보존
  • 코드 블록, 리스트, 인용문 구조화

Step 2: 한국어 번역 (ko-translator agent)

Input: Structured JSON (English)
Output: Translated JSON (Korean)
Agent: ko-translator (model: sonnet)

Task 도구로 ko-translator 에이전트를 호출:

  • 자연스러운 한국어로 번역
  • 기술 용어 첫 등장 시 병기
  • 코드, URL, 이미지는 원본 유지

Step 3: 마크다운 생성 (md-formatter agent)

Input: Translated JSON
Output: Final Markdown file
Agent: md-formatter (model: haiku)

Task 도구로 md-formatter 에이전트를 호출:

  • YAML frontmatter 생성
  • 깔끔한 마크다운 포맷팅
  • 이미지 임베딩 (![caption](url))

JSON 스키마 정의

1단계 출력 (html-extractor → ko-translator)

{
  "metadata": {
    "title": "원본 영어 제목",
    "author": "저자명",
    "date": "발행일 (원본 형식)",
    "read_time": "읽기 시간"
  },
  "sections": [
    {
      "type": "heading",
      "level": 1,
      "content": "헤딩 텍스트"
    },
    {
      "type": "paragraph",
      "content": "단락 텍스트"
    },
    {
      "type": "image",
      "url": "https://miro.medium.com/...",
      "caption": "이미지 캡션 (있는 경우)",
      "alt": "대체 텍스트 (있는 경우)"
    },
    {
      "type": "code",
      "language": "python",
      "content": "코드 내용"
    },
    {
      "type": "blockquote",
      "content": "인용문 내용"
    },
    {
      "type": "list",
      "ordered": false,
      "items": ["항목1", "항목2"]
    }
  ]
}

2단계 출력 (ko-translator → md-formatter)

{
  "metadata": {
    "title": "원본 영어 제목",
    "title_ko": "한국어 번역 제목",
    "author": "저자명",
    "date": "YYYY-MM-DD",
    "source": "원본 Medium URL (있는 경우)"
  },
  "sections": [
    // 동일 구조, content가 한국어로 번역됨
    // image type은 url, caption, alt 모두 보존
  ],
  "glossary": [
    {"en": "latency", "ko": "지연 시간"},
    {"en": "throughput", "ko": "처리량"}
  ]
}

Read the full file on GitHub · 335 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 335 lines · 45 tokens per session scan A 171e0f6e4706

Subscribe to this mod's changes

medium-ko-guide is a skill published in the GitHub repository joonlab/joonlab-claudecode-setting-for-share (10 stars, last pushed 1mo ago), licensed MIT. It adds 45 tokens to every session and 2,453 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

chinese-documentation

A Chinese technical-documentation style guide covering spacing, punctuation, numbers, terminology, and links when Chinese and English appear together.

jnMetaCode/superpowers-zh · 62 tokens

azure-ai-translation-text-py

Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications. Triggers: "text translation", "translator", "translate text", "transliterate", "TextTranslationClient".

microsoft/skills · 60 tokens

harden

Improve interface resilience through better error handling, i18n support, text overflow handling, and edge case management. Makes interfaces robust and production-ready. Use when the user asks to harden, make production-ready, handle edge cases, add error states, or fix overflow and i18n issues.

fengshao1227/ccg-workflow · 62 tokens

seedance-vocab-ja

This skill should be used when the user asks for Japanese Seedance 2.0 prompt wording, Japanese cinematic vocabulary, or translation of camera, lighting, action, VFX, audio, and production terms into Japanese.

Emily2040/seedance-2.0 · 50 tokens

asc-subscription-localization

Bulk-localize subscription, subscription-group, and in-app purchase display names across App Store locales using asc, including API 4.4.1 version-scoped v2 resources. Use when filling or updating subscription/IAP names and descriptions without App Store Connect UI work.

rorkai/app-store-connect-cli-skills · 60 tokens

i18n-helper

A helper for adding internationalization, which lets software show different languages and regional text. It finds user-visible text written directly in code and moves it into language files.

laolaoshiren/claude-code-skills-zh · 33 tokens