translate-web-article

translate-web-article is a skill for Claude Code, Codex from YoungjaeDev/my-claude-plugins. It costs 68 tokens per session (1,990 once invoked), scanned A, original, MIT.

A web-page conversion workflow that fetches an article and turns it into a Korean Markdown document. It translates the text, preserves code and tables with explanations, and can analyze images to create Korean captions.

In plain words
What is it for?
Use it for technical blogs, research papers, and documentation that you want to save as Korean Markdown. It fetches pages through Bright Data or its command-line fallback.
Why use it?
It removes the manual work of copying a web article, translating it, and rebuilding its structure. Keeping code and tables in their original form makes technical material easier to follow.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: names the AskUserQuestion tool.

Part of the docs plugin — 8 skills shipped together

Good fit Use it for technical blogs, research papers, and documentation that you want to save as Korean Markdown. It fetches pages through Bright Data or its command-line fallback.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/youngjaedev/my-claude-plugins/translate-web-article
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 YoungjaeDev/my-claude-plugins --skill translate-web-article
Clone the repo
git clone --depth 1 https://github.com/YoungjaeDev/my-claude-plugins

Made for: Claude Code, Codex.

Or install docs, the plugin that ships this one along with the rest of its 8 skills.

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 translate-web-article

README.md
[![agentmods](https://agentmods.dev/badge/skills/youngjaedev/my-claude-plugins/translate-web-article.svg)](https://agentmods.dev/skills/youngjaedev/my-claude-plugins/translate-web-article)
Your own site
<a href="https://agentmods.dev/skills/youngjaedev/my-claude-plugins/translate-web-article"><img src="https://agentmods.dev/badge/skills/youngjaedev/my-claude-plugins/translate-web-article.svg" alt="Measured on agentmods" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,990 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.00068 $0.01990
Opus 5 $0.00034 $0.00995
Sonnet 5 $0.00014 $0.00398
Haiku 4.5 $0.00007 $0.00199

Measured 2d ago against content hash 3d2fa52678d4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

translate-web-article 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 2d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/download_image.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

plugins/docs/skills/translate-web-article/SKILL.md · 229 lines

How it starts

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

Web Article Translator

Converts web pages to Korean markdown while analyzing images with VLM to generate context-aware Korean captions.

Workflow

URL Input
    |
    +-- Fetch page via Bright Data (markdown)
    |
    +-- Ask user options via AskUserQuestion
    |   +-- Output directory
    |   +-- Download images locally or not
    |
    +-- Process content
    |   +-- Text: Translate to Korean (keep tech terms)
    |   +-- Images: Download -> VLM analysis -> Korean caption
    |   +-- Code/Tables: Keep original + add explanation
    |
    +-- Generate markdown file

Step 1: Fetch Web Page

Use Bright Data MCP:

mcp__brightdata__scrape_as_markdown
- url: target URL

The tool takes only url and always returns the whole page as markdown: there is no format list and no main-content switch. Two consequences for the steps below: strip site chrome (nav, footer, share widgets) while translating rather than expecting the fetcher to have removed it, and read links off the inline markdown ([text](url), image ![alt](src)) instead of a separate links array.

When the Bright Data MCP tools are absent, fall back to the terminal: bdata scrape <url> -f markdown. If neither path is available, run the brightdata-guide four-gate preflight (MCP tools → CLI installed → authenticated → default zone), report the gate that failed, and stop. Do not substitute a plain built-in fetch, which the blocked and JS-heavy pages this skill targets will simply defeat.

Return error for inaccessible pages:

  • Login required
  • Paywall content
  • Blocked sites

Step 2: User Options

Use AskUserQuestion to confirm:

  1. Output directory: Where to save translated markdown
  2. Download images: Save locally or keep URL references

Step 3: Translation Rules

General Text

Translate to natural Korean.

Technical Terms

Keep original English. See references/tech-terms.md.

Transformer, Fine-tuning, API, GPU, CUDA, Tokenizer,
Embedding, Attention, Backbone, Checkpoint, Epoch,
Batch Size, Learning Rate, Loss, Gradient, Weight...

Read the full file on GitHub · 229 lines

Files

What ships with it

2 files 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. 2d ago First seen · 229 lines · 68 tokens per session scan A 3d2fa52678d4

Subscribe to this mod's changes

translate-web-article is a skill published in the GitHub repository YoungjaeDev/my-claude-plugins (2 stars, last pushed today), licensed MIT. It adds 68 tokens to every session and 1,990 once invoked, about $0.0003 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-09-05.

Related

Other skills, from other repositories

pdf_translator

Extract text from PDF files, translate it to a target language, and save the result as a Markdown file. Use this skill when the user wants to translate a PDF document or asks to "convert PDF to Chinese".

ForceInjection/AI-fundamentals · 47 tokens

translate-book

Translate books (PDF/DOCX/EPUB) into any language using parallel sub-agents. Converts input -> Markdown chunks -> translated chunks -> HTML/DOCX/EPUB/PDF.

deusyu/translate-book · 42 tokens

azure-ai-translation-document-py

Client library for Azure AI Translator document translation service for batch document translation with format preservation.

benjaminasterA/antigravity-awesome-skills · 0 tokens

docutranslate

Use when translating documents locally via LLM — PDF, Word, Excel, Markdown, SRT subtitles with format preservation. DocuTranslate: LLM-powered multi-format local file translation tool with MCP server support.

znlgis/opengis-skills · 47 tokens

lov-academic-translator

A tool for translating English research papers, journal or conference articles, arXiv papers, and technical PDFs into Chinese PDFs or publishable Chinese Markdown. It can preserve requested images, formulas, page matching, and layout details.

lovstudio/skills · 87 tokens

hebrew-document-generator

Generate Hebrew documents (PDF, DOCX/Word, PPTX) with correct right-to-left layout, mixed Hebrew-and-English bidi handling, and Hebrew typography. Use whenever the output is a Hebrew or mixed Hebrew/English Word document, Hebrew PDF, or Hebrew PowerPoint ("Hebrew Word document", "מסמך Word בעברית", "create a .docx in…

skills-il/localization · 247 tokens