Markdown to Word Converter

v1.1.0

Convert Markdown files to formatted Word documents (.docx). Use when the user asks to convert, export, or save a Markdown file as Word/DOCX format. Triggers...

1· 210·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for frankxpj/md-2-word.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Markdown to Word Converter" (frankxpj/md-2-word) from ClawHub.
Skill page: https://clawhub.ai/frankxpj/md-2-word
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install md-2-word

ClawHub CLI

Package manager switcher

npx clawhub@latest install md-2-word
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description promise (Markdown → Word) aligns with the included script and SKILL.md. The Python script implements Markdown parsing and formatting into a .docx using python-docx; nothing requires extra services or credentials.
Instruction Scope
SKILL.md instructs the agent to run the provided script on a user-specified file, confirm output, and install python-docx if missing. The script reads only the input markdown file and writes the output .docx; it does not access other paths, environment variables, or remote endpoints.
Install Mechanism
No install spec is provided (instruction-only). SKILL.md suggests installing python-docx via pip, which is appropriate and expected for this task. No downloads from unknown URLs or archive extraction are present.
Credentials
The skill requires no environment variables, no credentials, and no config paths. The minimal dependency (python-docx) is directly relevant to generating .docx files.
Persistence & Privilege
Skill is not forced-always, is user-invocable, and does not attempt to modify other skills or system-wide configuration. It simply runs a script that reads an input file and writes an output file.
Assessment
This skill appears coherent and limited to converting a Markdown file into a .docx using the included Python script. Before running: (1) review the script yourself (it is included) and confirm you trust it; (2) install python-docx in a controlled environment (pip install python-docx); (3) only provide file paths you intend the tool to read — the script will read the input path you pass and write the output file; and (4) if you handle sensitive files, run the conversion in a sandbox or on a machine you control. There are no network calls or credential requests in the code, so there is low risk of exfiltration from the script as provided.

Like a lobster shell, security has layers — review code before you run it.

latestvk975b5t33x9tqpgtbnv0kr8pd583zwt2
210downloads
1stars
2versions
Updated 4w ago
v1.1.0
MIT-0

Markdown to Word Converter

Convert Markdown files to professionally formatted Word documents (.docx).

Quick Start

python scripts/md_to_word.py <input.md> [output.docx]

Parameters:

  • input.md - Path to the source Markdown file (required)
  • output.docx - Path for the output Word file (optional, defaults to input name with .docx extension)

Example:

python scripts/md_to_word.py report.md report.docx

Supported Markdown Features

FeatureFormat
Headers (#, ##, ###)18pt/14pt/12pt bold, 微软雅黑
Bold (text)Bold formatting
TablesBordered tables with blue header background
Bullet lists (-, *)Bullet points
Numbered lists (1., 2.)Numbered items
Blockquotes (>)Italic, indented text
Horizontal rules (---)Paragraph spacing

Usage in Conversation

When user wants to convert a Markdown file:

  1. Identify the file: Confirm the Markdown file path
  2. Run the conversion: Execute the script
  3. Confirm output: Report file location and size

Example prompt handling:

  • "Convert this md file to word" → Run with provided file path
  • "Export as docx" → Convert current/mentioned file
  • "把调研提纲转成word" → Convert the mentioned file

Script Location

The conversion script is located at:

scripts/md_to_word.py

Requirements

  • Python 3.6+
  • python-docx library

Install if needed:

pip install python-docx

Comments

Loading comments...