Converts Markdown files to one MS Word document per file using plugin-local scripts and a folder-allowlist JSON.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add richfrem/Project_Sanctuary --skill markdown-to-msword-converter --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Markdown To Msword Converter?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/richfrem-markdown-to-msword-converter-project-sanctuary)More formats (shields.io, HTML) on the badges page.
---
name: markdown-to-msword-converter
description: Converts Markdown files to one MS Word document per file using plugin-local scripts and a folder-allowlist JSON.
disable-model-invocation: false
---
# Markdown to MS Word Converter
Use this skill when the user wants `.md` files converted into `.docx` across the project, either as single-file conversion or bulk conversion.
## Execution
Run the plugin wrapper script:
```powershell
python plugins/markdown-to-msword-converter/skills/markdown-to-msword-converter/scripts/run_bulk_md_to_docx.py --dry-run
python plugins/markdown-to-msword-converter/skills/markdown-to-msword-converter/scripts/run_bulk_md_to_docx.py --overwrite
```
## Behavior
- One `.docx` output per `.md` file
- Uses plugin-local scripts under `plugins/markdown-to-msword-converter/skills/markdown-to-msword-converter/scripts`
- Scope is controlled by `folders_to_convert.json` (configured folders + optional root `.md` files)
- Bulk mode calls `md_to_docx.py` once per file
- Single-file mode calls `md_to_docx.py` directly
## Link handling
- `md_to_docx.py` writes clickable hyperlinks into the Word document
- `md_to_docx.py` resolves internal `.md` targets to file-based `.docx` URI targets
## Optional flags
- `--root <path>` project root to scan
- `--overwrite` overwrite existing `.docx`
- `--dry-run` preview conversions only
- `--config <path>` path to folder allowlist JSON
## Dependency workflow
- Declare in `plugins/markdown-to-msword-converter/requirements.in`
- Compile with pip-tools to `plugins/markdown-to-msword-converter/requirements.txt`
- Install with `pip install -r plugins/markdown-to-msword-converter/requirements.txt`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!