word2pdf

word2pdf is a skill for Claude Code, Codex from phanghonghao/THU-Awesome-Skills. It costs 92 tokens per session (684 once invoked), scanned A, original, MIT.

A tool that turns Microsoft Word documents (.doc or .docx) into PDF files. It detects the document format automatically and uses Microsoft Word or LibreOffice to perform the conversion.

In plain words
What is it for?
Converting .doc and .docx files to PDF, checking their actual file format, and choosing where to save the resulting PDF.
Why use it?
It removes the need to choose the right conversion method or convert the file manually. This helps when a Word document must be shared or submitted as a PDF.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Converting .doc and .docx files to PDF, checking their actual file format, and choosing where to save the resulting PDF.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/phanghonghao/thu-awesome-skills/word2pdf
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 phanghonghao/THU-Awesome-Skills --skill word2pdf
Clone the repo
git clone --depth 1 https://github.com/phanghonghao/THU-Awesome-Skills

Made for: Claude Code, Codex.

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 word2pdf

README.md
[![agentmods](https://agentmods.dev/badge/skills/phanghonghao/thu-awesome-skills/word2pdf/github.svg)](https://agentmods.dev/skills/phanghonghao/thu-awesome-skills/word2pdf)
Your own site
<a href="https://agentmods.dev/skills/phanghonghao/thu-awesome-skills/word2pdf"><img src="https://agentmods.dev/badge/skills/phanghonghao/thu-awesome-skills/word2pdf/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for word2pdf

Your own site · 80×15
<a href="https://agentmods.dev/skills/phanghonghao/thu-awesome-skills/word2pdf"><img src="https://agentmods.dev/badge/skills/phanghonghao/thu-awesome-skills/word2pdf.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 684 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.00092 $0.00684
Opus 5 $0.00046 $0.00342
Sonnet 5 $0.00018 $0.00137
Haiku 4.5 $0.00009 $0.00068

Measured 12d ago against content hash 1630ebb5487a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

word2pdf 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 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (word2pdf.py), 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.

skills/word2pdf/SKILL.md · 73 lines

How it starts

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

Word to PDF Converter

Convert Word documents (.doc / .docx) to PDF with automatic format detection.

When to Use

  • User mentions: "word2pdf", "Word转PDF", "Word to PDF", "doc转PDF", "docx转PDF"
  • Need to convert a Word document to PDF for sharing or submission
  • Need to check whether a file is .doc or .docx before converting

How It Works

  1. Format Detection — reads first 8 bytes to identify:
    • D0 CF 11 E0 ....doc (OLE2 Compound Binary Format)
    • 50 4B 03 04.docx (ZIP / Office Open XML)
  2. Conversion — tries in order:
    • Microsoft Word COM automation (win32com) — best fidelity for both formats
    • LibreOffice headless (soffice --headless) — fallback for both formats

Usage

python "<LOCAL_USER>/.claude/skills/word2pdf/word2pdf.py" <input.doc|input.docx> [output.pdf]

Arguments

Argument Required Description
input Yes Input Word file path (.doc or .docx)
output No Output PDF path (default: same name with .pdf extension)

Examples

# Convert .docx (auto-detect format, output = input_name.pdf)
python "<LOCAL_USER>/.claude/skills/word2pdf/word2pdf.py" "report.docx"

# Convert .doc (legacy binary format)
python "<LOCAL_USER>/.claude/skills/word2pdf/word2pdf.py" "old_document.doc"

# Convert with custom output path
python "<LOCAL_USER>/.claude/skills/word2pdf/word2pdf.py" "report.docx" "output.pdf"

Dependencies

  • Primary: Microsoft Word (installed) + pywin32
    python -m pip install pywin32
    
  • Fallback: LibreOffice (any recent version)

Workflow

  1. Validate input file exists
  2. Detect format via magic bytes (report .doc or .docx)
  3. Try Microsoft Word COM conversion
  4. If unavailable, try LibreOffice headless
  5. Report output path, file size, and page count

Rules

  1. Always use PYTHONIOENCODING=utf-8 on Windows
  2. Report detected format to user before converting
  3. Report any conversion warnings or errors
  4. If neither Word nor LibreOffice is available, inform the user to install one

Read the full file on GitHub · 73 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. 12d ago First seen · 73 lines · 92 tokens per session scan A 1630ebb5487a

Subscribe to this mod's changes

word2pdf is a skill published in the GitHub repository phanghonghao/THU-Awesome-Skills (8 stars, last pushed 1mo ago), licensed MIT. It adds 92 tokens to every session and 684 once invoked, about $0.0005 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