feat: add convert-excel-to-md, convert-pdf-to-md, and convert-word-to-md skills#2294
Open
1YaoWei0 wants to merge 14 commits into
Open
feat: add convert-excel-to-md, convert-pdf-to-md, and convert-word-to-md skills#22941YaoWei0 wants to merge 14 commits into
1YaoWei0 wants to merge 14 commits into
Conversation
…-md skills Add three new agent skills that convert common document formats to Markdown using bundled Python scripts powered by MarkItDown: - convert-excel-to-md: Converts .xlsx workbooks to Markdown with per-sheet tables and embedded image extraction via a bundled Python script. - convert-pdf-to-md: Converts .pdf documents to Markdown with text/table extraction and embedded image extraction via PyMuPDF. - convert-word-to-md: Converts .docx documents to Markdown with proper image extraction replacing MarkItDown's base64 placeholders. Each skill includes: - SKILL.md with detailed usage instructions, output structure docs, and a troubleshooting table - scripts/ with the conversion Python script and requirements.txt - references/setup.md with environment setup instructions Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
🔒 PR Risk Scan ResultsScanned 17 changed file(s).
|
Contributor
🔍 Vally Lint Results✅ All checks passed
Summary
Full linter output |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds three document-to-Markdown skills using MarkItDown, with image extraction, batch conversion, setup guidance, and generated catalog entries.
Changes:
- Adds Excel, PDF, and Word conversion scripts.
- Documents installation, usage, output, and troubleshooting.
- Registers all three skills in the skills catalog.
Reviewed changes
Copilot reviewed 13 out of 13 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
skills/convert-excel-to-md/SKILL.md |
Defines the Excel conversion skill. |
skills/convert-excel-to-md/scripts/requirements.txt |
Declares Excel dependencies. |
skills/convert-excel-to-md/scripts/convert_excel_to_md.py |
Converts workbooks and extracts images. |
skills/convert-excel-to-md/references/setup.md |
Documents Excel setup. |
skills/convert-pdf-to-md/SKILL.md |
Defines the PDF conversion skill. |
skills/convert-pdf-to-md/scripts/requirements.txt |
Declares PDF dependencies. |
skills/convert-pdf-to-md/scripts/convert_pdf_to_md.py |
Converts PDFs and extracts images. |
skills/convert-pdf-to-md/references/setup.md |
Documents PDF setup. |
skills/convert-word-to-md/SKILL.md |
Defines the Word conversion skill. |
skills/convert-word-to-md/scripts/requirements.txt |
Declares Word dependencies. |
skills/convert-word-to-md/scripts/convert_word_to_md.py |
Converts DOCX files and extracts images. |
skills/convert-word-to-md/references/setup.md |
Documents Word setup. |
docs/README.skills.md |
Adds the skills to the catalog. |
The CI valid-refs linter flagged the literal Markdown image syntax containing a data URI as an invalid file reference. Replaced it with a plain text description of the placeholder format. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
…1YaoWei0/awesome-copilot into contribute-convert-to-md-skills
aaronpowell
requested changes
Jul 14, 2026
aaronpowell
left a comment
Contributor
There was a problem hiding this comment.
The comment I have on the Excel setup is applicable to all skills
Contributor
|
There are also some copilot comments worth reviewing, esp the one about the README. |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add three new agent skills that convert common document formats to Markdown using bundled Python scripts powered by MarkItDown:
Each skill includes:
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.mainbranch for this pull request.Description
Type of Contribution
Additional Notes
By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.