用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jykim/ai4pkm-vault --skill docx-to-markdown命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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 대화형 음성 온보딩 가이드
正在显示 SKILL.md
基于 SOC 职业分类
| 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 |