Agent skill

md-to-docx

Convert Markdown files to professionally formatted Word (.docx) documents with embedded PNG images — pure JavaScript, no external tools required

GitHub68,948★ · +463/wk · 2 repos on radarProfile →
copilotships scriptsMIT
Install
npx skills add github/awesome-copilot --skill md-to-docx --agent copilot

Same command for any agent — swap --agent for claude-code, codex, cursor.

Facts
Files in the skill folder: 3
SKILL.md size: 3 KB
Bundled scripts: yes
Path: skills/md-to-docx/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 37,432 · +281 this week
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Markdown to Word (.docx) Skill Convert Markdown (`.md`) files into professionally formatted Word (`.docx`) documents with embedded PNG images. Uses **pure JavaScript** via the `docx` and `marked` npm packages — no Pandoc, LibreOffice, or any native binary required. ## How to Convert ```bash # Install dependencies (one-time, from the scripts folder) cd skills/md-to-docx/scripts && npm install # Convert (run from workspace root) node skills/md-to-docx/scripts/md-to-docx.mjs <input.md> [output.docx] ``` If `output.docx` is omitted, it defaults to `<input-basename>.docx` in the current directory. ## Skill Folder Contents | File | Purpose | |------|---------| | `SKILL.md` | This instruction file | | `scripts/md-to-docx.mjs` | Node.js Markdown-to-Word converter | | `scripts/package.json` | Dependencies (`docx`, `marked`) | ## Prerequisites | Requirement | Version | Notes | |-------------|---------|-------| | **Node.js** | 18+ | Required runtime | | **`docx`** | 9+ | Pure JS Word document generator | | **`marked`** | 15+ | Markdown parser | No native binaries. No system-level installs. Works on Windows, macOS, and Linux. ## Features The converter: - **Extracts YAML front-matter** — uses

What's inside
Steps it walks through
  1. How to Convert
  2. Skill Folder Contents
  3. Prerequisites
  4. Features
  5. Image Embedding
  6. Front-Matter Format
Ships with 2 files
  • scripts/md-to-docx.mjs
  • scripts/package.json
Commands it runs
Install dependencies (one-time, from the scripts folder)
cd skills/md-to-docx/scripts && npm install
Convert (run from workspace root)
node skills/md-to-docx/scripts/md-to-docx.mjs <input.md> [output.docx]
More from awesome-copilot
All skills →
About this skill
What does the md-to-docx skill do?

Convert Markdown files to professionally formatted Word (.docx) documents with embedded PNG images — pure JavaScript, no external tools required

How do I install it?

Run `npx skills add github/awesome-copilot --skill md-to-docx --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From github/awesome-copilot, a repository with 37,432 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going