New to Claude Skills? Learn how to install them →

github on GitHub

Convert Word to Markdown

OfficialFree

Effortlessly convert .docx files to Markdown format.

by github37.7k stars on github/awesome-copilot
5 views
Updated Aug 10, 2026
Get this skill

Free · Opens the source repo

What Convert Word to Markdown does

The Convert Word to Markdown skill is designed to facilitate the conversion of Word documents (.docx) into Markdown format, making it easier to analyze, summarize, and extract information from them. This skill is particularly useful when users require insights from Word documents, as the native .docx format is not easily readable in its raw form. By utilizing this skill, users can ensure that they can work with the content of their Word documents in a more accessible and versatile format.

This skill operates through a Python script that handles the conversion process. Users simply need to provide the path to the .docx file or a folder containing multiple Word documents. The script will create a corresponding Markdown file and, if applicable, an images folder containing any embedded images from the document. This structured output allows users to maintain organization and easily reference images alongside their Markdown content.

The skill also supports batch processing, enabling users to convert an entire folder of Word documents in one go. This is particularly beneficial for users dealing with multiple documents, such as reports or proposals, as it saves time and ensures consistency in the conversion process. When mixed file types are present in a folder, users are advised to invoke sibling skills for other formats, ensuring no files are overlooked during the conversion.

To get started, users must follow the setup instructions provided in the accompanying documentation to ensure the necessary dependencies are installed. Once set up, the skill can be triggered whenever a .docx file is referenced, making it a valuable addition for anyone frequently working with Word documents in a coding or analytical context.

When to use it

Use this skill whenever you encounter a .docx file that needs to be analyzed, summarized, or processed in any way.

When not to use it

This skill is not suitable for converting legacy .doc files, which must be resaved as .docx before use.

What you can build with it

Analyzing a Report

When a user needs to summarize a lengthy report in .docx format, they can use this skill to convert it to Markdown for easier reading.

Batch Processing Resumes

A recruiter can convert multiple Word resumes stored in a folder into Markdown format for streamlined review and comparison.

Extracting Data from Contracts

Legal teams can utilize this skill to convert contracts into Markdown, allowing for easier data extraction and analysis.

How to install Convert Word to Markdown

View source

1. Install with the skills CLI

npx skills add github/awesome-copilot/convert-word-to-md --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by github

Convert Word to Markdown

When to use this skill

Trigger this skill any time there is a .docx file that needs to be understood or processed — for example, a user attaches a Word document and asks questions about it, wants a summary, wants specific data pulled out, or wants multiple Word documents in a folder processed together. Word's native .docx format is a zipped XML bundle that is not reliably readable as plain text, so always convert it to Markdown first using the script in this skill rather than trying to open or parse the file directly.

This skill only supports .docx. If asked to convert a legacy .doc file, tell the user it isn't supported and ask them to re-save it as .docx (Word: File > Save As > Word Document (.docx)) first.

Mixed file types: When the user references a folder or set of documents containing multiple supported file types (.pdf, .docx, .xlsx), this skill handles only .docx files. The agent MUST also invoke the sibling skills in parallel:

  • convert-pdf-to-md for any .pdf files
  • convert-excel-to-md for any .xlsx files

Never process a folder and silently skip a supported file type. All three skills must be invoked together when mixed types are present.

Setup (once per environment)

Before the first conversion in a given environment, follow references/setup.md step by step to ensure Python, pip, and the markitdown package are installed. Do this proactively rather than guessing whether the environment is ready — the script itself will also fail with a clear pointer back to that file if markitdown turns out to be missing, so it's safe to just try the conversion first if you're reasonably confident setup was already done.

Usage

The conversion script lives at scripts/convert_word_to_md.py.

Output structure: MarkItDown embeds images as a truncated data:image/png;base64... URI placeholder (not real image data), so the script extracts real images directly from the .docx and writes a self-contained folder per document instead of a single loose .md file:

<name>/
    img/
        img001.<ext>
        img002.<ext>
        ...
    <name>.md          (image references are relative: img/imgNNN.ext)

If the document has no embedded images, no img/ folder is created.

Single file:

# Windows
python scripts\convert_word_to_md.py "C:\path\to\document.docx"
# macOS / Linux
python scripts/convert_word_to_md.py "/path/to/document.docx"

This creates a document\ folder next to the source file (containing document.md and, if present, document\img\). To control the destination folder explicitly:

python scripts\convert_word_to_md.py "C:\path\to\document.docx" -o "C:\path\to\output_folder"

A folder of Word documents (batch mode):

python scripts\convert_word_to_md.py "C:\path\to\folder"

Add --recursive to also include subfolders:

python scripts\convert_word_to_md.py "C:\path\to\folder" --recursive

Each .docx found gets its own <name>\ output folder next to it by default. Pass -o "C:\path\to\output_parent" to collect all the generated <name>\ folders under a separate parent directory instead (subfolder structure is preserved when combined with --recursive).

After conversion, read the resulting .md file(s) to perform the actual analysis the user asked for — the script's job is only to produce accurate Markdown (and images), not to interpret the content.

Deciding where output goes

Default — always output next to the source file. The <name>/ folder is created in the same directory as the source .docx. This is the required default for every case. Do NOT override it unless the user explicitly asks for a different location.

Only use -o when the user explicitly provides an output path (e.g., "save the output to C:\output", "put the results in D:\work"). Do NOT pass -o based on the agent's current working directory, the session state folder, or any implied location.

If the source file path cannot be fully resolved — for example, the user provides only a filename with no directory, or the path is ambiguous — use ask_user to confirm the full absolute path before running the conversion. Never guess or assume the directory.

Troubleshooting

SymptomLikely causeFix
ModuleNotFoundError: No module named 'markitdown' / exit code 2MarkItDown not installedFollow references/setup.md
ERROR: Unsupported file type '.doc' / exit code 3Legacy .doc, not .docxAsk the user to re-save as .docx
ERROR: Input path not found / exit code 3Wrong path, or file movedConfirm the correct path with the user
FAILED <file> -> ... in batch outputThat specific file is corrupt, password-protected, or otherwise unreadableReport which file(s) failed; other files in the batch still succeed
NOTE: skipped N non-.docx file(s)Folder contains non-Word filesExpected — those files are intentionally ignored
WARNING: found N image placeholder(s) ... but extracted M image file(s)Mismatch between MarkItDown's placeholder count and images found in word/media/ (unusual/malformed docx)Placeholders are left unreplaced rather than risk wrong images; inspect the source file's media manually if images are needed

Frequently asked questions about Convert Word to Markdown

Similar skills