ワンクリックで
docx-to-markdown
Convert DOCX files into markdown while preserving headings, lists, tables, metadata, and extracted images.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Convert DOCX files into markdown while preserving headings, lists, tables, metadata, and extracted images.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create interactive HTML road-trip guides for multi-day driving itineraries. Use when an AI agent is asked to plan a road trip, build a travel itinerary page, make a fullscreen route map, estimate trip cost/time, compare restaurant or lodging alternatives, add POIs with photos and Google Maps links, or produce a self-contained HTML guide for any road trip.
Set up a new AI4PKM vault from scratch or migrate an existing vault to the latest template version. Detects current state, generates a plan, and applies changes with full backup safety.
고비 데스크탑 3.0 대화형 음성 온보딩 가이드
Create animated GIF slideshows from structured content. Use when the user asks to create a GIF summary, animated slide recap, GIF presentation, or visual summary GIF for events, meetups, presentations, or any multi-point content. Supports Korean text, dark/light themes, custom colors, progress indicators, and quote boxes. Ideal for social media sharing (Gobi Brain Updates, Slack, etc).
Convert EPUB files into a single well-formatted markdown document with extracted metadata, table of contents, and images.
Generate document and slide images with Google Gemini or Imagen models, including style selection, aspect ratios, and approval workflow guidance.
| name | docx-to-markdown |
| description | Convert DOCX files into markdown while preserving headings, lists, tables, metadata, and extracted images. |
Convert DOCX files to well-formatted markdown files with images extracted.
python3 docx_to_markdown.py "<docx_path>" -o "<output_path>"
_files_/ folder with document prefixoutput_dir/
├── document.docx # Original file
├── document.md # Extracted markdown
└── _files_/ # Images folder
├── DocTitle_image1.png
├── DocTitle_figure2.jpg
└── ...
Images are extracted with a document prefix derived from the title:
DieEmptyUnleash (first 3 words, special chars removed)_files_/DieEmptyUnleash_image1.pngThis prevents filename collisions when extracting multiple documents to the same folder.
---
title: {from metadata}
author: {from metadata}
source_file: original.docx
source_type: docx
extracted: YYYY-MM-DD HH:MM:SS
status: extracted
---
# {Document Title}
{content with  links}
pip install python-docx
Or use requirements.txt:
pip install -r requirements.txt
| Flag | Description |
|---|---|
-o, --output | Output markdown file path (default: same as docx with .md) |
-q, --quiet | Suppress progress messages |