← All skills
Tencent SkillHub Β· AI

MarkItDown Skill

OpenClaw agent skill for converting documents to Markdown. Documentation and utilities for Microsoft's MarkItDown library. Supports PDF, Word, PowerPoint, Excel, images (OCR), audio (transcription), HTML, YouTube.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

OpenClaw agent skill for converting documents to Markdown. Documentation and utilities for Microsoft's MarkItDown library. Supports PDF, Word, PowerPoint, Excel, images (OCR), audio (transcription), HTML, YouTube.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
POST_INSTALL.md, README.md, SKILL.md, USAGE-GUIDE.md, package.json, reference.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 13 sections Open source page

MarkItDown Skill

Documentation and utilities for converting documents to Markdown using Microsoft's MarkItDown library. Note: This skill provides documentation and a batch script. The actual conversion is done by the markitdown CLI/library installed via pip.

When to Use

Use markitdown for: πŸ“„ Fetching documentation (README, API docs) 🌐 Converting web pages to markdown πŸ“ Document analysis (PDFs, Word, PowerPoint) 🎬 YouTube transcripts πŸ–ΌοΈ Image text extraction (OCR) 🎀 Audio transcription

Quick Start

# Convert file to markdown markitdown document.pdf -o output.md # Convert URL markitdown https://example.com/docs -o docs.md

Supported Formats

FormatFeaturesPDFText extraction, structureWord (.docx)Headings, lists, tablesPowerPointSlides, textExcelTables, sheetsImagesOCR + EXIF metadataAudioSpeech transcriptionHTMLStructure preservationYouTubeVideo transcription

Installation

The skill requires Microsoft's markitdown CLI: pip install 'markitdown[all]' Or install specific formats only: pip install 'markitdown[pdf,docx,pptx]'

Fetch Documentation

markitdown https://github.com/user/repo/blob/main/README.md -o readme.md

Convert PDF

markitdown document.pdf -o document.md

Batch Convert

# Using included script python ~/.openclaw/skills/markitdown/scripts/batch_convert.py docs/*.pdf -o markdown/ -v # Or shell loop for file in docs/*.pdf; do markitdown "$file" -o "${file%.pdf}.md" done

Python API

from markitdown import MarkItDown md = MarkItDown() result = md.convert("document.pdf") print(result.text_content)

"markitdown not found"

pip install 'markitdown[all]'

OCR Not Working

# Ubuntu/Debian sudo apt-get install tesseract-ocr # macOS brew install tesseract

What This Skill Provides

ComponentSourcemarkitdown CLIMicrosoft's pip packagemarkitdown Python APIMicrosoft's pip packagescripts/batch_convert.pyThis skill (utility)DocumentationThis skill

See Also

USAGE-GUIDE.md - Detailed examples reference.md - Full API reference Microsoft MarkItDown - Upstream library

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
5 Docs1 Config
  • SKILL.md Primary doc
  • POST_INSTALL.md Docs
  • README.md Docs
  • reference.md Docs
  • USAGE-GUIDE.md Docs
  • package.json Config