managedcode-markitdown

Featured

Use ManagedCode.MarkItDown when a .NET application needs deterministic document-to-Markdown conversion for ingestion, indexing, summarization, or content-processing workflows. USE FOR: ManagedCode.MarkItDown integration; document ingestion flows; Office or rich-text conversion to Markdown; indexing and summarization pipelines. DO NOT USE FOR: unrelated stacks; generic tasks that do not need this specific guidance. INVOKES: inspect the repository context, edit targeted files, and run relevant build, test, lint, or validation commands when changes are made.

Data & Documents 463 stars 35 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 92/100

Stars 20%
89
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
72
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# ManagedCode.MarkItDown ## Trigger On - integrating `ManagedCode.MarkItDown` into document ingestion flows - converting office or rich-text content into Markdown for downstream processing - reviewing indexing, chunking, or AI-preparation pipelines that depend on Markdown output - documenting file-conversion steps for a .NET application ## Workflow 1. Identify the document sources the app actually handles. 2. Decide where Markdown conversion belongs in the pipeline: - before indexing - before chunking - before AI summarization or enrichment 3. Keep conversion isolated behind one ingestion or processing service instead of scattering format handling everywhere. 4. Validate real converted output for structure, links, headings, and attachment handling. 5. Document which downstream stage depends on the produced Markdown. ```mermaid flowchart LR A["Input document"] --> B["ManagedCode.MarkItDown conversion"] B --> C["Markdown output"] C --> D["Indexing, chunking, or AI workflow"] ``` ## Deliver - guidance on where ManagedCode.MarkItDown fits in a real processing pipeline - conversion-boundary recommendations for application design - output-validation expectations for document ingestion ## Validate - the converted Markdown is good enough for the actual downstream consumer - conversion is isolated in one clear pipeline step - tests or review samples cover the real input formats the application claims to support

Details

Author
managedcode
Repository
managedcode/dotnet-skills
Created
4 months ago
Last Updated
2 days ago
Language
C#
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

Data & Documents Listed

markitdown

Converts files (PDF, DOCX, PPTX, XLSX, images, audio, HTML, CSV/JSON/XML, ZIP, YouTube URLs) to clean Markdown using Microsoft's markitdown CLI, and optionally reviews the result for extraction artifacts (fragmented sentences, missing headings, ligature glitches, spelling errors). Use this skill whenever the user attaches a file and asks to convert it, extract text/content from it, "turn this into markdown," get a readable or editable version of a PDF or Office doc, or mentions markitdown by name — even if they just say something like "can you get the text out of this" or "make this PDF editable."

1 Updated today
ErickRamirezAU
Data & Documents Listed

using-markit

Converts known files and URLs to markdown with markit for agent workflows. Selects deterministic modes (--json for machine-readable parsing, -q for raw markdown output), handles installation and conversion failures, and applies safe defaults for optional AI description/transcription. Use when users already have specific sources and ask to convert or extract text, turn a document or webpage into markdown, transcribe audio, or describe images from PDF, DOCX, PPTX, XLSX, HTML, EPUB, CSV, JSON, XML, ZIP, URL, image, or audio sources.

0 Updated 5 days ago
msewell
AI & Automation Featured

managedcode-storage

Use ManagedCode.Storage when a .NET application needs a provider-agnostic storage abstraction with explicit configuration, container selection, upload and download flows, and backend-specific integration kept. USE FOR: integrating ManagedCode.Storage into a .NET application; reviewing how a project abstracts file or object storage; deciding whether to centralize storage provider. DO NOT USE FOR: unrelated stacks; generic tasks that do not need this specific guidance. INVOKES: inspect the repository context, edit targeted files, and run relevant build, test, lint, or validation commands when changes are made.

463 Updated 2 days ago
managedcode