npx skills add smithery/yorick-ryu --skill md2docx
yorick-ryu/md2docx-skill · Archived
md2docx
Convert Markdown to Word (DOCX) documents. Use when user wants to export, convert, or create Word documents from Markdown content.
Installation
npx skills add yorick-ryu/md2docx-skill --skill md2docx
Stronger alternatives
This repository is archived — consider an actively maintained alternative.
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Use for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybr…
568.2K installsUse this skill any time a .pptx or .potx file is involved in any way — as input, output, or bot…
216.8K installsUse this skill whenever the user wants to do anything with PDF files. This includes reading or …
192.4K installsUse this skill whenever the user wants to create, read, edit, or manipulate Word documents (.do…
184.5K installsUse this skill any time a spreadsheet file is the primary input or output. This means any task …
165K installsMore details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md6,562 B -
docs
SUMMARY.md145 B
History
- First seen on skills.sh
- First recorded snapshot · 11 installs
SKILL.md
md2docx - Markdown to Word Converter
Convert Markdown text to professionally formatted Word (DOCX) documents.
Quick Start
Default to file mode for local skill execution:
# File mode: Saves file directly (default for local environments)
python scripts/convert.py input.md
# URL mode: Returns download URL when running remotely
python scripts/convert.py input.md --url
Choosing the Right Mode
| Scenario | Mode | Command |
|---|---|---|
| Skill runs locally, user wants file saved | file mode | python scripts/convert.py input.md |
| Skill runs in cloud, user needs to download | --url |
python scripts/convert.py input.md --url |
| Remote execution (MCP, API, cloud agent) | --url |
Returns URL for user to download |
| Local execution (user's machine) | file mode | Saves .docx directly to disk |
Decision Rule:
- Run without a mode flag when the skill runs on the same machine where the user wants the output file.
- Use
--urlonly when the skill runs in a different environment than the user (cloud, remote server, MCP server).
How It Works
- Prepare Markdown: Ensure content is in standard Markdown format
- Run Script: Execute
scripts/convert.pywith appropriate mode - Get Result:
- URL mode: Receive download URL - File mode: File saved to specified location
API Details
Endpoints:
- URL mode:
https://api.deepshare.app/convert-text-to-url→ Returns{"url": "..."} - File mode:
https://api.deepshare.app/convert-text→ Returns DOCX file directly
Authentication: Set the DEEPSHAREAPI_KEY environment variable and send it as X-API-Key.
API Key Configuration
Set the environment variable before running the skill:
export DEEP_SHARE_API_KEY="your_api_key_here"
The skill reads only this environment variable. If it is missing, conversion stops with a configuration error.
Request Format
{
"content": "markdown text here",
"filename": "output",
"template_name": "templates",
"language": "zh"
}
Parameters
| Parameter | Default | Description |
|---|---|---|
content |
required | Markdown text to convert |
filename |
"output" |
Output filename (without .docx) |
template_name |
"templates" |
Template: templates, 论文, article, thesis, etc. |
language |
"zh" |
Template language: zh or en |
Common Templates
Chinese (language: "zh"):
templates- General purpose论文- Academic paper论文-首行不缩进- Paper without indent论文-标题加粗- Paper with bold headings
English (language: "en"):
templates- General purposearticle- Article/report stylethesis- Academic thesis
Conversion Script Usage
Command Line Options
python scripts/convert.py <input.md> [options]
Options:
--url Return download URL
--file Save file directly to disk (default if no mode specified)
--template, -t Template name (default: templates)
--language, -l Language: zh or en (default: zh)
--filename Output filename without .docx (default: input basename)
--output, -o Output directory for file mode
Examples
# File mode (local environments, default)
python scripts/convert.py document.md
python scripts/convert.py paper.md --file --output ./docs --template thesis --language en
python scripts/convert.py notes.md --file --filename meeting-notes
# URL mode (cloud/remote environments)
python scripts/convert.py document.md --url
python scripts/convert.py paper.md --url --template 论文 --language zh
Validation Before Conversion
Ensure Markdown content:
- Headers use
#syntax - Lists use
-or1.syntax - Code blocks use triple backticks
- Math formulas use
$...$(inline) or$$...$$(block) - Images use publicly accessible URLs
Response Handling
URL Mode Response
Success (200 OK):
{
"url": "https://flies.deepshare.app/mcp/hash/document_xxx.docx"
}
File Mode Response
Success: File saved to disk, path printed to stdout
Error Responses (Both Modes)
401 Unauthorized- Invalid API key403 Forbidden- Quota exceeded → Purchase at https://ds.rick216.cn/purchase413 Payload Too Large- Content exceeds 10MB500 Internal Server Error- Service unavailable, retry
User Communication
On Success
Tell user:
- Conversion completed successfully
- URL mode: Provide the download URL
- File mode: Provide the file path where document was saved
- Check which API key was used:
- If using the environment variable: No reminder needed - If the environment variable is missing: Tell the user to set DEEPSHAREAPI_KEY
On Quota Exceeded
Tell user:
- Conversion failed: quota exceeded
- Purchase more credits at: https://ds.rick216.cn/purchase
- Recheck
DEEPSHAREAPI_KEY
On Other Errors
Tell user:
- What went wrong (based on error message)
- How to fix it
- Offer to retry
Tips
- API Key Configuration:
- Set environment variable DEEPSHAREAPIKEY ``bash export DEEPSHAREAPIKEY="yourapikey_here" ``
- File Size: Keep Markdown under 10MB
- Images: Use
https://URLs, not local paths - Math: Use LaTeX syntax:
$E=mc^2$or$$\int_0^\infty$$ - Templates: Choose based on document type (paper, article, etc.)
Example Workflows
Workflow 1: Cloud Environment (URL Mode)
User asks: "Convert this to Word" (skill running in cloud)
- Save the Markdown content to a temporary file (e.g.,
temp.md)
- Run the conversion script with URL mode:
``bash python scripts/convert.py temp.md --url ``
- The script will:
- Read the API key from DEEPSHAREAPI_KEY - Call the conversion API - Return download URL
- Provide the download URL to user
- Clean up temporary file
Workflow 2: Local Environment (File Mode)
User asks: "Convert my notes.md to Word" (skill running locally)
- Run the conversion script with file mode:
``bash python scripts/convert.py notes.md --output ./output ``
- The script will:
- Read the API key from DEEPSHAREAPI_KEY - Call the conversion API - Save the DOCX file directly
- Tell user where the file was saved
- No cleanup needed - file is the output