
Word Doc To Md Skill
- Updated May 10, 2026
- greenstevester/word-doc-to-md-skill
word-doc-to-md-skill is a Claude Code skill that converts Word documents into clean Markdown by running a portable Go binary so developers can feed agent-readable specs without Word formatting noise.
About
word-doc-to-md-skill is a Claude Code marketplace plugin that converts Microsoft Word documents into clean Markdown agents can actually read. Developers use it when pasted .docx content arrives with tracked-change noise, broken tables, or bad heading structure that wastes context. The skill orchestrates a portable Go binary so conversion is a single command on Windows, macOS, or Linux.
- One-command Word to Markdown conversion inside Claude Code
- Static Go binary handles pandoc plus five post-processing passes
- Accepts insertions, drops deletions/comments, normalizes tables
- Cross-platform with no Python or Node runtime required
- ~2.5 MB binary with sub-second cold start
Word Doc To Md Skill by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add greenstevester/word-doc-to-md-skillAdd your badge
Show developers this marketplace is listed on Skillselion. Paste this into your README.
| Last updated | May 10, 2026 |
|---|---|
| Repository | greenstevester/word-doc-to-md-skill ↗ |
How do I turn a Word requirements doc into Markdown my coding agent can read without tracked-change garbage and broken tables?
Convert Word .docx files into clean, agent-readable Markdown by accepting tracked changes and normalizing tables and headings.
Who is it for?
Developers ingesting .docx specifications, requirements, or exports into Claude Code sessions on any desktop OS.
Skip if: Teams already storing specs as native Markdown or needing complex Word layout fidelity rather than agent-readable text.
What you get
Produces normalized Markdown with accepted insertions, clean pipe tables, collapsed blank lines, sane heading hierarchy, and image placeholders.
Plugins in this marketplace
1 plugin - install individually after you add the marketplace.
Recommended Marketplaces
FAQ
What runtime does conversion need?
The skill ships a static Go binary (~2.5 MB) that invokes pandoc and post-processing; no Python or Node install is required on the host.
How does it handle tracked changes?
Insertions are accepted into the text while deletions and comments are dropped so agents do not see Word revision markup.
Which platforms are supported?
Windows, macOS, and Linux are supported via cross-compiled CGO_ENABLED=0 binaries with sub-second cold starts.