المهارات markitdown
📄

markitdown

مخاطر منخفضة 📁 الوصول إلى نظام الملفات🌐 الوصول إلى الشبكة🔑 متغيرات البيئة

Convert Documents to Markdown

متاح أيضًا من: K-Dense-AI

Convert PDF, DOCX, PPTX, images, and other documents to clean Markdown format. Supports OCR for images, transcription for audio, and optional AI-enhanced image descriptions for better LLM processing.

يدعم: Claude Codex Code(CC)
🥇 85 ذهبي
1

تنزيل ZIP المهارة

2

رفع في Claude

اذهب إلى Settings → Capabilities → Skills → Upload skill

3

فعّل وابدأ الاستخدام

اختبرها

استخدام "markitdown". Convert research_paper.pdf to Markdown

النتيجة المتوقعة:

  • Converted research_paper.pdf → research_paper.md
  • Extracted title, author, and all text content
  • Preserved tables and formatted sections

استخدام "markitdown". Convert slides.pptx with AI image descriptions

النتيجة المتوقعة:

  • Converted slides.pptx → slides.md
  • AI generated descriptions for 12 images
  • Included speaker notes from each slide

التدقيق الأمني

مخاطر منخفضة
v5 • 1/17/2026

Static analysis flagged 735 issues, but all are false positives. Findings originated from documentation files where markdown code formatting was misidentified as shell execution, placeholder API keys were flagged as credentials, and legitimate file+network patterns were marked as dangerous. Actual Python scripts are benign document conversion utilities from Microsoft.

14
الملفات التي تم فحصها
4,491
الأسطر التي تم تحليلها
3
النتائج
5
إجمالي عمليات التدقيق

عوامل الخطر

📁 الوصول إلى نظام الملفات (3)
🌐 الوصول إلى الشبكة (1)
🔑 متغيرات البيئة (1)
تم تدقيقه بواسطة: claude عرض سجل التدقيق →

درجة الجودة

91
الهندسة المعمارية
100
قابلية الصيانة
87
المحتوى
48
المجتمع
90
الأمان
91
الامتثال للمواصفات

ماذا يمكنك بناءه

Convert Scientific Papers

Transform PDF papers to Markdown for literature review and AI analysis with proper formatting preservation.

Extract Presentation Content

Convert PowerPoint slides to Markdown for republishing, summarization, or content extraction workflows.

Process Spreadsheet Data

Convert Excel files to Markdown tables for easier data processing and analysis by AI systems.

جرّب هذه الموجهات

Basic Conversion
Use the markitdown skill to convert {filename.pdf} to Markdown and save it as {filename.md}
Batch Processing
Convert all PDF files in the {directory} folder to Markdown using markitdown and save outputs to {output_folder}
With AI Descriptions
Convert {presentation.pptx} to Markdown with AI-enhanced image descriptions using your OpenRouter API key
Organized Literature Review
Use convert_literature.py to convert all papers in {input_dir} to Markdown, organize by year, and create an index

أفضل الممارسات

  • Install optional dependencies for the file formats you need (pip install 'markitdown[pdf,docx,pptx]')
  • Provide your OpenRouter API key via OPENROUTER_API_KEY environment variable for AI features
  • Use batch_convert.py with --recursive flag for processing large document collections

تجنب

  • Do not convert sensitive documents without reviewing the output first
  • Avoid processing files in place - always specify a separate output directory
  • Do not share API keys in prompts or commit them to version control

الأسئلة المتكررة

What file formats are supported?
PDF, DOCX, PPTX, XLSX, images (JPEG, PNG, GIF, WebP), audio (WAV, MP3), HTML, CSV, JSON, XML, ZIP, EPUB, and YouTube URLs.
Do I need to install additional dependencies?
Base installation handles basic formats. Install extras like pip install 'markitdown[pdf]' for PDF support or 'markitdown[all]' for everything.
How do I enable AI image descriptions?
Set OPENROUTER_API_KEY environment variable. The convert_with_ai.py script or MarkItDown with llm_client parameter will use it automatically.
Can this process scanned documents?
Yes, install Tesseract OCR (brew install tesseract or apt-get install tesseract-ocr) for optical character recognition on scanned PDFs and images.
How fast is batch conversion?
batch_convert.py supports parallel processing. Use --workers flag to control concurrency. Default is 4 parallel conversions.
Are my documents sent to external servers?
Only if using AI image descriptions with OpenRouter. Regular conversion runs entirely locally. You control when network access occurs.